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

Unified Diff: mojo/examples/pepper_container_app/mojo_ppapi_globals.h

Issue 623573002: Mojo: Convert the remaining OVERRIDEs to override in mojo/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 3 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: mojo/examples/pepper_container_app/mojo_ppapi_globals.h
diff --git a/mojo/examples/pepper_container_app/mojo_ppapi_globals.h b/mojo/examples/pepper_container_app/mojo_ppapi_globals.h
index 349f885b56ceee1899be5fce8060b709e8373049..037d161af018b2e19c80f449a3278d2533bb4acd 100644
--- a/mojo/examples/pepper_container_app/mojo_ppapi_globals.h
+++ b/mojo/examples/pepper_container_app/mojo_ppapi_globals.h
@@ -5,7 +5,6 @@
#ifndef MOJO_EXAMPLES_PEPPER_CONTAINER_APP_MOJO_PPAPI_GLOBALS_H_
#define MOJO_EXAMPLES_PEPPER_CONTAINER_APP_MOJO_PPAPI_GLOBALS_H_
-#include "base/compiler_specific.h"
#include "base/macros.h"
#include "base/memory/ref_counted.h"
#include "mojo/public/cpp/system/core.h"
@@ -45,27 +44,27 @@ class MojoPpapiGlobals : public ppapi::PpapiGlobals {
ScopedMessagePipeHandle CreateGLES2Context();
// ppapi::PpapiGlobals implementation.
- virtual ppapi::ResourceTracker* GetResourceTracker() OVERRIDE;
- virtual ppapi::VarTracker* GetVarTracker() OVERRIDE;
+ virtual ppapi::ResourceTracker* GetResourceTracker() override;
+ virtual ppapi::VarTracker* GetVarTracker() override;
virtual ppapi::CallbackTracker* GetCallbackTrackerForInstance(
- PP_Instance instance) OVERRIDE;
+ PP_Instance instance) override;
virtual void LogWithSource(PP_Instance instance,
PP_LogLevel level,
const std::string& source,
- const std::string& value) OVERRIDE;
+ const std::string& value) override;
virtual void BroadcastLogWithSource(PP_Module module,
PP_LogLevel level,
const std::string& source,
- const std::string& value) OVERRIDE;
+ const std::string& value) override;
virtual ppapi::thunk::PPB_Instance_API* GetInstanceAPI(
- PP_Instance instance) OVERRIDE;
+ PP_Instance instance) override;
virtual ppapi::thunk::ResourceCreationAPI* GetResourceCreationAPI(
- PP_Instance instance) OVERRIDE;
- virtual PP_Module GetModuleForInstance(PP_Instance instance) OVERRIDE;
- virtual ppapi::MessageLoopShared* GetCurrentMessageLoop() OVERRIDE;
- virtual base::TaskRunner* GetFileTaskRunner() OVERRIDE;
- virtual std::string GetCmdLine() OVERRIDE;
- virtual void PreCacheFontForFlash(const void* logfontw) OVERRIDE;
+ PP_Instance instance) override;
+ virtual PP_Module GetModuleForInstance(PP_Instance instance) override;
+ virtual ppapi::MessageLoopShared* GetCurrentMessageLoop() override;
+ virtual base::TaskRunner* GetFileTaskRunner() override;
+ virtual std::string GetCmdLine() override;
+ virtual void PreCacheFontForFlash(const void* logfontw) override;
private:
class MainThreadMessageLoopResource;
« no previous file with comments | « mojo/examples/pepper_container_app/graphics_3d_resource.h ('k') | mojo/examples/pepper_container_app/mojo_ppapi_globals.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698