mirror of
				https://bitbucket.org/chromiumembedded/cef
				synced 2025-06-05 21:39:12 +02:00 
			
		
		
		
	
		
			
				
	
	
		
			52 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			52 lines
		
	
	
		
			1.5 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_command_line.h"
 | 
						|
#include "include/cef_crash_util.h"
 | 
						|
#include "include/cef_file_util.h"
 | 
						|
#include "tests/shared/common/client_switches.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");
 | 
						|
    }
 | 
						|
 | 
						|
    const std::string& crl_sets_path =
 | 
						|
        CefCommandLine::GetGlobalCommandLine()->GetSwitchValue(
 | 
						|
            switches::kCRLSetsPath);
 | 
						|
    if (!crl_sets_path.empty()) {
 | 
						|
      // Load the CRLSets file from the specified path.
 | 
						|
      CefLoadCRLSetsFile(crl_sets_path);
 | 
						|
    }
 | 
						|
  }
 | 
						|
 | 
						|
 private:
 | 
						|
  DISALLOW_COPY_AND_ASSIGN(ClientBrowserDelegate);
 | 
						|
  IMPLEMENT_REFCOUNTING(ClientBrowserDelegate);
 | 
						|
};
 | 
						|
 | 
						|
}  // namespace
 | 
						|
 | 
						|
void CreateDelegates(ClientAppBrowser::DelegateSet& delegates) {
 | 
						|
  delegates.insert(new ClientBrowserDelegate);
 | 
						|
}
 | 
						|
 | 
						|
}  // namespace browser
 | 
						|
}  // namespace client
 |