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

Unified Diff: mojo/examples/pepper_container_app/pepper_container_app.cc

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/pepper_container_app.cc
diff --git a/mojo/examples/pepper_container_app/pepper_container_app.cc b/mojo/examples/pepper_container_app/pepper_container_app.cc
index 86853ee3544855794ad1c644891141a7fd251844..4b64441a7ff0a4879ea0403bd6bc0a39c2b970c3 100644
--- a/mojo/examples/pepper_container_app/pepper_container_app.cc
+++ b/mojo/examples/pepper_container_app/pepper_container_app.cc
@@ -54,7 +54,7 @@ class PepperContainerApp: public ApplicationDelegate,
}
// NativeViewportClient implementation.
- virtual void OnDestroyed() OVERRIDE {
+ virtual void OnDestroyed() override {
ppapi::ProxyAutoLock lock;
if (plugin_instance_) {
@@ -65,7 +65,7 @@ class PepperContainerApp: public ApplicationDelegate,
base::MessageLoop::current()->Quit();
}
- virtual void OnSizeChanged(SizePtr size) OVERRIDE {
+ virtual void OnSizeChanged(SizePtr size) override {
ppapi::ProxyAutoLock lock;
if (plugin_instance_) {
@@ -75,7 +75,7 @@ class PepperContainerApp: public ApplicationDelegate,
}
virtual void OnEvent(EventPtr event,
- const mojo::Callback<void()>& callback) OVERRIDE {
+ const mojo::Callback<void()>& callback) override {
if (!event->location_data.is_null()) {
ppapi::ProxyAutoLock lock;
@@ -85,7 +85,7 @@ class PepperContainerApp: public ApplicationDelegate,
}
// MojoPpapiGlobals::Delegate implementation.
- virtual ScopedMessagePipeHandle CreateGLES2Context() OVERRIDE {
+ virtual ScopedMessagePipeHandle CreateGLES2Context() override {
CommandBufferPtr command_buffer;
SizePtr size = Size::New();
size->width = 800;
« no previous file with comments | « mojo/examples/pepper_container_app/mojo_ppapi_globals.cc ('k') | mojo/examples/pepper_container_app/plugin_instance.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698