Update to latest libchromiumcontent
* vendor/libchromiumcontent b6a0d85...0d607ee (3): > Stop trying to compile SQLitePersistentCookieStore separately > Update to latest Chromium trunk revision > Merge pull request #4 from aroben/atom
This commit is contained in:
parent
0b5ab8e43d
commit
80cb76355c
10 changed files with 40 additions and 19 deletions
|
@ -10,7 +10,19 @@
|
|||
|
||||
namespace brightray {
|
||||
|
||||
namespace {
|
||||
|
||||
BrowserClient* g_browser_client;
|
||||
|
||||
}
|
||||
|
||||
BrowserClient* BrowserClient::Get() {
|
||||
return g_browser_client;
|
||||
}
|
||||
|
||||
BrowserClient::BrowserClient() {
|
||||
DCHECK(!g_browser_client);
|
||||
g_browser_client = this;
|
||||
}
|
||||
|
||||
BrowserClient::~BrowserClient() {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue