| Index: content/renderer/pepper/fake_pepper_plugin_instance.cc
|
| diff --git a/content/renderer/pepper/fake_pepper_plugin_instance.cc b/content/renderer/pepper/fake_pepper_plugin_instance.cc
|
| index 1a54058148d3a402c74f2fac88c52642b71ea643..53f20f61694e3ed4c0717d686d66f5923ab45293 100644
|
| --- a/content/renderer/pepper/fake_pepper_plugin_instance.cc
|
| +++ b/content/renderer/pepper/fake_pepper_plugin_instance.cc
|
| @@ -11,25 +11,17 @@ namespace content {
|
|
|
| FakePepperPluginInstance::~FakePepperPluginInstance() {}
|
|
|
| -content::RenderView* FakePepperPluginInstance::GetRenderView() {
|
| - return NULL;
|
| -}
|
| +content::RenderView* FakePepperPluginInstance::GetRenderView() { return NULL; }
|
|
|
| blink::WebPluginContainer* FakePepperPluginInstance::GetContainer() {
|
| return NULL;
|
| }
|
|
|
| -v8::Isolate* FakePepperPluginInstance::GetIsolate() const {
|
| - return NULL;
|
| -}
|
| +v8::Isolate* FakePepperPluginInstance::GetIsolate() const { return NULL; }
|
|
|
| -ppapi::VarTracker* FakePepperPluginInstance::GetVarTracker() {
|
| - return NULL;
|
| -}
|
| +ppapi::VarTracker* FakePepperPluginInstance::GetVarTracker() { return NULL; }
|
|
|
| -const GURL& FakePepperPluginInstance::GetPluginURL() {
|
| - return gurl_;
|
| -}
|
| +const GURL& FakePepperPluginInstance::GetPluginURL() { return gurl_; }
|
|
|
| base::FilePath FakePepperPluginInstance::GetModulePath() {
|
| return base::FilePath();
|
| @@ -51,9 +43,7 @@ PP_ExternalPluginResult FakePepperPluginInstance::SwitchToOutOfProcessProxy(
|
|
|
| void FakePepperPluginInstance::SetAlwaysOnTop(bool on_top) {}
|
|
|
| -bool FakePepperPluginInstance::IsFullPagePlugin() {
|
| - return false;
|
| -}
|
| +bool FakePepperPluginInstance::IsFullPagePlugin() { return false; }
|
|
|
| bool FakePepperPluginInstance::FlashSetFullscreen(bool fullscreen,
|
| bool delay_report) {
|
|
|