mirror of
				https://bitbucket.org/chromiumembedded/cef
				synced 2025-06-05 21:39:12 +02:00 
			
		
		
		
	A system-wide installation of the Pepper Flash plugin is available from Adobe for Windows and Mac OS X platforms as a separate download. To enable automatic detection and loading of the system-wide installation pass the `--enable-system-flash` command-line flag. The Pepper Flash plugin can also be loaded by specifying the file path and version via the `--ppapi-flash-path=<path> --ppapi-flash-version=<version>` command-line flags. The version can be identified by viewing the manifest.json file in the same directory as the Pepper Flash plugin library.
		
			
				
	
	
		
			26 lines
		
	
	
		
			893 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			26 lines
		
	
	
		
			893 B
		
	
	
	
		
			C++
		
	
	
	
	
	
// Copyright (c) 2012 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_PEPPER_PEPPER_HELPER_H_
 | 
						|
#define CEF_LIBCEF_RENDERER_PEPPER_PEPPER_HELPER_H_
 | 
						|
 | 
						|
#include "base/compiler_specific.h"
 | 
						|
#include "content/public/renderer/render_frame_observer.h"
 | 
						|
 | 
						|
// This class listens for Pepper creation events from the RenderFrame and
 | 
						|
// attaches the parts required for Chrome-specific plugin support.
 | 
						|
class CefPepperHelper : public content::RenderFrameObserver {
 | 
						|
 public:
 | 
						|
  explicit CefPepperHelper(content::RenderFrame* render_frame);
 | 
						|
  ~CefPepperHelper() override;
 | 
						|
 | 
						|
  // RenderFrameObserver.
 | 
						|
  void DidCreatePepperPlugin(content::RendererPpapiHost* host) override;
 | 
						|
 | 
						|
 private:
 | 
						|
  DISALLOW_COPY_AND_ASSIGN(CefPepperHelper);
 | 
						|
};
 | 
						|
 | 
						|
#endif  // CEF_LIBCEF_RENDERER_PEPPER_PEPPER_HELPER_H_
 |