mirror of
				https://bitbucket.org/chromiumembedded/cef
				synced 2025-06-05 21:39:12 +02:00 
			
		
		
		
	
		
			
				
	
	
		
			47 lines
		
	
	
		
			1.6 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			47 lines
		
	
	
		
			1.6 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
| // Copyright 2014 The Chromium 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 CEF_LIBCEF_BROWSER_EXTENSIONS_EXTENSION_WEB_CONTENTS_OBSERVER_H_
 | |
| #define CEF_LIBCEF_BROWSER_EXTENSIONS_EXTENSION_WEB_CONTENTS_OBSERVER_H_
 | |
| 
 | |
| #include <memory>
 | |
| 
 | |
| #include "base/observer_list.h"
 | |
| #include "content/public/browser/web_contents_user_data.h"
 | |
| #include "extensions/browser/extension_web_contents_observer.h"
 | |
| #include "extensions/browser/script_executor.h"
 | |
| 
 | |
| namespace extensions {
 | |
| 
 | |
| // The CEF version of ExtensionWebContentsObserver.
 | |
| class CefExtensionWebContentsObserver
 | |
|     : public ExtensionWebContentsObserver,
 | |
|       public content::WebContentsUserData<CefExtensionWebContentsObserver> {
 | |
|  public:
 | |
|   ~CefExtensionWebContentsObserver() override;
 | |
| 
 | |
|   // Creates and initializes an instance of this class for the given
 | |
|   // |web_contents|, if it doesn't already exist.
 | |
|   static void CreateForWebContents(content::WebContents* web_contents);
 | |
| 
 | |
|   ScriptExecutor* script_executor() { return script_executor_.get(); }
 | |
| 
 | |
|  private:
 | |
|   friend class content::WebContentsUserData<CefExtensionWebContentsObserver>;
 | |
| 
 | |
|   explicit CefExtensionWebContentsObserver(content::WebContents* web_contents);
 | |
| 
 | |
|   // content::WebContentsObserver overrides.
 | |
|   void RenderFrameCreated(content::RenderFrameHost* render_frame_host) override;
 | |
| 
 | |
|   std::unique_ptr<ScriptExecutor> script_executor_;
 | |
| 
 | |
|   WEB_CONTENTS_USER_DATA_KEY_DECL();
 | |
|   DISALLOW_COPY_AND_ASSIGN(CefExtensionWebContentsObserver);
 | |
| };
 | |
| 
 | |
| }  // namespace extensions
 | |
| 
 | |
| #endif  // CEF_LIBCEF_BROWSER_EXTENSIONS_EXTENSION_WEB_CONTENTS_OBSERVER_H_
 |