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

Unified Diff: content/browser/renderer_host/image_transport_factory.cc

Issue 12813004: Chromium style checker cleanup (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebased Created 7 years, 9 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/browser/renderer_host/image_transport_factory.cc
diff --git a/content/browser/renderer_host/image_transport_factory.cc b/content/browser/renderer_host/image_transport_factory.cc
index ae4bb37c12877e341511763ab8f85d88920714b7..01fe4ab9d5ae696ae59082f85d428140a1dfb5b8 100644
--- a/content/browser/renderer_host/image_transport_factory.cc
+++ b/content/browser/renderer_host/image_transport_factory.cc
@@ -90,7 +90,7 @@ class NoTransportFactory : public ImageTransportFactory {
return 0;
}
- void WaitSyncPoint(uint32 sync_point) OVERRIDE {
+ virtual void WaitSyncPoint(uint32 sync_point) OVERRIDE {
}
// We don't generate lost context events, so we don't need to keep track of
@@ -588,7 +588,7 @@ class GpuProcessTransportFactory
virtual ~MainThreadContextProvider() {}
virtual scoped_ptr<WebGraphicsContext3DCommandBufferImpl>
- CreateOffscreenContext3d() {
+ CreateOffscreenContext3d() OVERRIDE {
return make_scoped_ptr(factory_->CreateOffscreenContext());
}
@@ -623,7 +623,7 @@ class GpuProcessTransportFactory
virtual ~CompositorThreadContextProvider() {}
virtual scoped_ptr<WebGraphicsContext3DCommandBufferImpl>
- CreateOffscreenContext3d() {
+ CreateOffscreenContext3d() OVERRIDE {
return make_scoped_ptr(factory_->CreateOffscreenContext());
}

Powered by Google App Engine
This is Rietveld 408576698