diff options
Diffstat (limited to 'content/renderer/render_process_impl.h')
-rw-r--r-- | content/renderer/render_process_impl.h | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/content/renderer/render_process_impl.h b/content/renderer/render_process_impl.h index 7b74d6f..8761844 100644 --- a/content/renderer/render_process_impl.h +++ b/content/renderer/render_process_impl.h @@ -1,4 +1,4 @@ -// Copyright (c) 2010 The Chromium Authors. All rights reserved. +// Copyright (c) 2011 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. @@ -23,10 +23,11 @@ class RenderProcessImpl : public RenderProcess { virtual ~RenderProcessImpl(); // RenderProcess implementation. - virtual skia::PlatformCanvas* GetDrawingCanvas(TransportDIB** memory, - const gfx::Rect& rect); - virtual void ReleaseTransportDIB(TransportDIB* memory); - virtual bool UseInProcessPlugins() const; + virtual skia::PlatformCanvas* GetDrawingCanvas( + TransportDIB** memory, + const gfx::Rect& rect) OVERRIDE; + virtual void ReleaseTransportDIB(TransportDIB* memory) OVERRIDE; + virtual bool UseInProcessPlugins() const OVERRIDE; // Like UseInProcessPlugins(), but called before RenderProcess is created // and does not allow overriding by tests. This just checks the command line |