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

Unified Diff: content/renderer/pepper/pepper_in_process_resource_creation.h

Issue 633303002: Replace FINAL and OVERRIDE with their C++11 counterparts in content/renderer (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 2 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/pepper_in_process_resource_creation.h
diff --git a/content/renderer/pepper/pepper_in_process_resource_creation.h b/content/renderer/pepper/pepper_in_process_resource_creation.h
index 2718912da07e32ef7165805316698119ea5cbba0..0401ae525d7db0efb6ee72e052057a36f54464c3 100644
--- a/content/renderer/pepper/pepper_in_process_resource_creation.h
+++ b/content/renderer/pepper/pepper_in_process_resource_creation.h
@@ -43,26 +43,26 @@ class PepperInProcessResourceCreation : public ResourceCreationImpl {
// ResourceCreation_API implementation.
virtual PP_Resource CreateBrowserFont(
PP_Instance instance,
- const PP_BrowserFont_Trusted_Description* description) OVERRIDE;
+ const PP_BrowserFont_Trusted_Description* description) override;
virtual PP_Resource CreateFileChooser(PP_Instance instance,
PP_FileChooserMode_Dev mode,
- const PP_Var& accept_types) OVERRIDE;
- virtual PP_Resource CreateFileIO(PP_Instance instance) OVERRIDE;
+ const PP_Var& accept_types) override;
+ virtual PP_Resource CreateFileIO(PP_Instance instance) override;
virtual PP_Resource CreateFileRef(PP_Instance instance,
const ppapi::FileRefCreateInfo& create_info)
- OVERRIDE;
+ override;
virtual PP_Resource CreateFileSystem(PP_Instance instance,
- PP_FileSystemType type) OVERRIDE;
+ PP_FileSystemType type) override;
virtual PP_Resource CreateGraphics2D(PP_Instance pp_instance,
const PP_Size* size,
- PP_Bool is_always_opaque) OVERRIDE;
- virtual PP_Resource CreatePrinting(PP_Instance instance) OVERRIDE;
+ PP_Bool is_always_opaque) override;
+ virtual PP_Resource CreatePrinting(PP_Instance instance) override;
virtual PP_Resource CreateTrueTypeFont(
PP_Instance instance,
- const struct PP_TrueTypeFontDesc_Dev* desc) OVERRIDE;
- virtual PP_Resource CreateURLLoader(PP_Instance instance) OVERRIDE;
- virtual PP_Resource CreateURLRequestInfo(PP_Instance instance) OVERRIDE;
- virtual PP_Resource CreateWebSocket(PP_Instance instance) OVERRIDE;
+ const struct PP_TrueTypeFontDesc_Dev* desc) override;
+ virtual PP_Resource CreateURLLoader(PP_Instance instance) override;
+ virtual PP_Resource CreateURLRequestInfo(PP_Instance instance) override;
+ virtual PP_Resource CreateWebSocket(PP_Instance instance) override;
private:
// Non-owning pointer to the host for the current plugin.
« no previous file with comments | « content/renderer/pepper/pepper_hung_plugin_filter.h ('k') | content/renderer/pepper/pepper_in_process_router.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698