mirror of
				https://bitbucket.org/chromiumembedded/cef
				synced 2025-06-05 21:39:12 +02:00 
			
		
		
		
	
		
			
				
	
	
		
			51 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			51 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
| // Copyright (c) 2013 The Chromium Embedded Framework Authors.
 | |
| // Portions copyright (c) 2011 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_RENDERER_RENDER_THREAD_OBSERVER_H_
 | |
| #define CEF_LIBCEF_RENDERER_RENDER_THREAD_OBSERVER_H_
 | |
| 
 | |
| #include <memory>
 | |
| 
 | |
| #include "base/compiler_specific.h"
 | |
| #include "content/public/renderer/render_thread_observer.h"
 | |
| 
 | |
| namespace visitedlink {
 | |
| class VisitedLinkSlave;
 | |
| }
 | |
| 
 | |
| struct Cef_CrossOriginWhiteListEntry_Params;
 | |
| 
 | |
| // This class sends and receives control messages on the renderer process.
 | |
| class CefRenderThreadObserver : public content::RenderThreadObserver {
 | |
|  public:
 | |
|   CefRenderThreadObserver();
 | |
|   ~CefRenderThreadObserver() override;
 | |
| 
 | |
|   static bool is_incognito_process() { return is_incognito_process_; }
 | |
| 
 | |
|   // RenderThreadObserver implementation.
 | |
|   bool OnControlMessageReceived(const IPC::Message& message) override;
 | |
| 
 | |
|   visitedlink::VisitedLinkSlave* visited_link_slave() {
 | |
|     return visited_link_slave_.get();
 | |
|   }
 | |
| 
 | |
|  private:
 | |
|   // Message handlers called on the render thread.
 | |
|   void OnSetIsIncognitoProcess(bool is_incognito_process);
 | |
|   void OnModifyCrossOriginWhitelistEntry(
 | |
|       bool add,
 | |
|       const Cef_CrossOriginWhiteListEntry_Params& params);
 | |
|   void OnClearCrossOriginWhitelist();
 | |
| 
 | |
|   static bool is_incognito_process_;
 | |
| 
 | |
|   std::unique_ptr<visitedlink::VisitedLinkSlave> visited_link_slave_;
 | |
| 
 | |
|   DISALLOW_COPY_AND_ASSIGN(CefRenderThreadObserver);
 | |
| };
 | |
| 
 | |
| #endif  // CEF_LIBCEF_RENDERER_RENDER_THREAD_OBSERVER_H_
 |