-
Notifications
You must be signed in to change notification settings - Fork 159
/
Copy pathbrowser_process_handler.h
53 lines (41 loc) · 1.79 KB
/
browser_process_handler.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
// Copyright (c) 2014 The Chromium Embedded Framework Authors. All rights
// reserved. Use of this source code is governed by a BSD-style license that
// can be found in the LICENSE file.
#ifndef JCEF_NATIVE_BROWSER_PROCESS_HANDLER_H_
#define JCEF_NATIVE_BROWSER_PROCESS_HANDLER_H_
#pragma once
#include <jni.h>
#include <set>
#include "include/base/cef_lock.h"
#include "include/cef_browser_process_handler.h"
#include "include/wrapper/cef_message_router.h"
#include "jni_scoped_helpers.h"
// comparator to check if configuration values are the same
struct cmpCfg {
bool operator()(const CefMessageRouterConfig& lValue,
const CefMessageRouterConfig& rValue) const {
std::less<std::string> comp;
return comp(lValue.js_query_function.ToString(),
rValue.js_query_function.ToString());
}
};
// BrowserProcessHandler implementation.
class BrowserProcessHandler : public CefBrowserProcessHandler {
public:
BrowserProcessHandler(JNIEnv* env, jobject app_handler);
virtual ~BrowserProcessHandler();
void OnContextInitialized() override;
void OnScheduleMessagePumpWork(int64_t delay_ms) override;
bool OnAlreadyRunningAppRelaunch(CefRefPtr<CefCommandLine> command_line,
const CefString& current_directory) override;
static CefRefPtr<CefListValue> GetMessageRouterConfigs();
static void AddMessageRouterConfig(const CefMessageRouterConfig& cfg);
static void RemoveMessageRouterConfig(const CefMessageRouterConfig& cfg);
protected:
ScopedJNIObjectGlobal handle_;
static std::set<CefMessageRouterConfig, cmpCfg> router_cfg_;
static base::Lock router_cfg_lock_;
// Include the default reference counting implementation.
IMPLEMENT_REFCOUNTING(BrowserProcessHandler);
};
#endif // JCEF_NATIVE_BROWSER_PROCESS_HANDLER_H_