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

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

Issue 11740038: Cleanup: Fix some lint errors in content/. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 7 years, 12 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
===================================================================
--- content/browser/renderer_host/image_transport_factory.cc (revision 175088)
+++ content/browser/renderer_host/image_transport_factory.cc (working copy)
@@ -237,8 +237,8 @@
class BrowserCompositorOutputSurface;
// Directs vsync updates to the appropriate BrowserCompositorOutputSurface.
-class BrowserCompositorOutputSurfaceProxy :
- public base::RefCountedThreadSafe<BrowserCompositorOutputSurfaceProxy> {
+class BrowserCompositorOutputSurfaceProxy
+ : public base::RefCountedThreadSafe<BrowserCompositorOutputSurfaceProxy> {
public:
BrowserCompositorOutputSurfaceProxy()
: message_handler_set_(false) {
@@ -287,9 +287,9 @@
// Adapts a WebGraphicsContext3DCommandBufferImpl into a
// cc::OutputSurface that also handles vsync parameter updates
// arriving from the GPU process.
-class BrowserCompositorOutputSurface :
- public cc::OutputSurface,
- public base::NonThreadSafe {
+class BrowserCompositorOutputSurface
+ : public cc::OutputSurface,
+ public base::NonThreadSafe {
public:
explicit BrowserCompositorOutputSurface(
WebGraphicsContext3DCommandBufferImpl* context,
@@ -365,10 +365,10 @@
surface->OnUpdateVSyncParameters(timebase, interval);
}
-class GpuProcessTransportFactory :
- public ui::ContextFactory,
- public ImageTransportFactory,
- public WebKit::WebGraphicsContext3D::WebGraphicsContextLostCallback {
+class GpuProcessTransportFactory
+ : public ui::ContextFactory,
+ public ImageTransportFactory,
+ public WebKit::WebGraphicsContext3D::WebGraphicsContextLostCallback {
public:
GpuProcessTransportFactory()
: ALLOW_THIS_IN_INITIALIZER_LIST(callback_factory_(this)) {
« no previous file with comments | « content/browser/in_process_webkit/browser_webkitplatformsupport_impl.cc ('k') | content/common/gamepad_hardware_buffer.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698