41 lines
1.1 KiB
C++
41 lines
1.1 KiB
C++
// Copyright (c) 2016 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.
|
|
|
|
#include "tests/cefclient/browser/client_browser.h"
|
|
|
|
#include "include/cef_crash_util.h"
|
|
|
|
namespace client {
|
|
namespace browser {
|
|
|
|
namespace {
|
|
|
|
class ClientBrowserDelegate : public ClientAppBrowser::Delegate {
|
|
public:
|
|
ClientBrowserDelegate() {}
|
|
|
|
void OnContextInitialized(CefRefPtr<ClientAppBrowser> app) OVERRIDE {
|
|
if (CefCrashReportingEnabled()) {
|
|
// Set some crash keys for testing purposes. Keys must be defined in the
|
|
// "crash_reporter.cfg" file. See cef_crash_util.h for details.
|
|
CefSetCrashKeyValue("testkey1", "value1_browser");
|
|
CefSetCrashKeyValue("testkey2", "value2_browser");
|
|
CefSetCrashKeyValue("testkey3", "value3_browser");
|
|
}
|
|
}
|
|
|
|
private:
|
|
DISALLOW_COPY_AND_ASSIGN(ClientBrowserDelegate);
|
|
IMPLEMENT_REFCOUNTING(ClientBrowserDelegate);
|
|
};
|
|
|
|
} // namespace
|
|
|
|
void CreateDelegates(ClientAppBrowser::DelegateSet& delegates) {
|
|
delegates.insert(new ClientBrowserDelegate);
|
|
}
|
|
|
|
} // namespace browser
|
|
} // namespace client
|