diff options
author | bartfab@chromium.org <bartfab@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-09-20 20:42:59 +0000 |
---|---|---|
committer | bartfab@chromium.org <bartfab@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-09-20 20:42:59 +0000 |
commit | 0509bc89f7c6b01e1865449109df2ac7365c0363 (patch) | |
tree | b651daa200f4115ac7cbce8b25249b6df61d0a86 /content/renderer/pepper/pepper_plugin_instance_impl.h | |
parent | 8929b708cbf9169984ac737ae85fda7117cab2aa (diff) | |
download | chromium_src-0509bc89f7c6b01e1865449109df2ac7365c0363.zip chromium_src-0509bc89f7c6b01e1865449109df2ac7365c0363.tar.gz chromium_src-0509bc89f7c6b01e1865449109df2ac7365c0363.tar.bz2 |
Enforce disable fullscreen policy for ppapi plugins
CL 22986010 added a policy to disable fullscreen. This CL extends the
enforcement of this policy to ppapi plugins as well.
BUG=275405
TEST=Manual
Review URL: https://chromiumcodereview.appspot.com/23591062
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@224478 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'content/renderer/pepper/pepper_plugin_instance_impl.h')
-rw-r--r-- | content/renderer/pepper/pepper_plugin_instance_impl.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/content/renderer/pepper/pepper_plugin_instance_impl.h b/content/renderer/pepper/pepper_plugin_instance_impl.h index 3113820..42d7d71 100644 --- a/content/renderer/pepper/pepper_plugin_instance_impl.h +++ b/content/renderer/pepper/pepper_plugin_instance_impl.h @@ -359,7 +359,7 @@ class CONTENT_EXPORT PepperPluginInstanceImpl int plugin_child_id) OVERRIDE; virtual void SetAlwaysOnTop(bool on_top) OVERRIDE; virtual bool IsFullPagePlugin() OVERRIDE; - virtual void FlashSetFullscreen(bool fullscreen, bool delay_report) OVERRIDE; + virtual bool FlashSetFullscreen(bool fullscreen, bool delay_report) OVERRIDE; virtual bool IsRectTopmost(const gfx::Rect& rect) OVERRIDE; virtual int32_t Navigate(const ppapi::URLRequestInfoData& request, const char* target, |