Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2232)

Unified Diff: content/renderer/pepper/fake_pepper_plugin_instance.cc

Issue 2100753003: Enable PDF accessibility when RenderFrame's accessibility mode changes. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Work around cross-platform whitespace difference in print preview test Created 4 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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 e00c1eeed2fe88c738b971e2623c9594d0f8de16..0b6aff32c8d81c39aefe1cd492d9ce3a63b2cf95 100644
--- a/content/renderer/pepper/fake_pepper_plugin_instance.cc
+++ b/content/renderer/pepper/fake_pepper_plugin_instance.cc
@@ -11,15 +11,21 @@ namespace content {
FakePepperPluginInstance::~FakePepperPluginInstance() {}
-content::RenderView* FakePepperPluginInstance::GetRenderView() { return NULL; }
+content::RenderFrame* FakePepperPluginInstance::GetRenderFrame() {
+ return nullptr;
+}
+
+content::RenderView* FakePepperPluginInstance::GetRenderView() {
+ return nullptr;
+}
blink::WebPluginContainer* FakePepperPluginInstance::GetContainer() {
- return NULL;
+ return nullptr;
}
-v8::Isolate* FakePepperPluginInstance::GetIsolate() const { return NULL; }
+v8::Isolate* FakePepperPluginInstance::GetIsolate() const { return nullptr; }
-ppapi::VarTracker* FakePepperPluginInstance::GetVarTracker() { return NULL; }
+ppapi::VarTracker* FakePepperPluginInstance::GetVarTracker() { return nullptr; }
const GURL& FakePepperPluginInstance::GetPluginURL() { return gurl_; }
« no previous file with comments | « content/renderer/pepper/fake_pepper_plugin_instance.h ('k') | content/renderer/pepper/pepper_plugin_instance_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698