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

Unified Diff: content/browser/android/in_process/synchronous_compositor_factory_impl.h

Issue 897773002: Update {virtual,override,final} to follow C++11 style. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 5 years, 10 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/android/in_process/synchronous_compositor_factory_impl.h
diff --git a/content/browser/android/in_process/synchronous_compositor_factory_impl.h b/content/browser/android/in_process/synchronous_compositor_factory_impl.h
index 169381c80294bbd92f9259d416225b67a504febf..d141a7fc21b3f9eedc5ee7e4d806b708a9dfb49f 100644
--- a/content/browser/android/in_process/synchronous_compositor_factory_impl.h
+++ b/content/browser/android/in_process/synchronous_compositor_factory_impl.h
@@ -25,28 +25,27 @@ namespace content {
class SynchronousCompositorFactoryImpl : public SynchronousCompositorFactory {
public:
SynchronousCompositorFactoryImpl();
- virtual ~SynchronousCompositorFactoryImpl();
+ ~SynchronousCompositorFactoryImpl() override;
// SynchronousCompositorFactory
- virtual scoped_refptr<base::MessageLoopProxy> GetCompositorMessageLoop()
- override;
- virtual bool RecordFullLayer() override;
- virtual scoped_ptr<cc::OutputSurface> CreateOutputSurface(
+ scoped_refptr<base::MessageLoopProxy> GetCompositorMessageLoop() override;
+ bool RecordFullLayer() override;
+ scoped_ptr<cc::OutputSurface> CreateOutputSurface(
int routing_id,
scoped_refptr<content::FrameSwapMessageQueue> frame_swap_message_queue)
override;
- virtual InputHandlerManagerClient* GetInputHandlerManagerClient() override;
- virtual scoped_ptr<cc::BeginFrameSource> CreateExternalBeginFrameSource(
+ InputHandlerManagerClient* GetInputHandlerManagerClient() override;
+ scoped_ptr<cc::BeginFrameSource> CreateExternalBeginFrameSource(
int routing_id) override;
- virtual scoped_refptr<cc_blink::ContextProviderWebContext>
+ scoped_refptr<cc_blink::ContextProviderWebContext>
CreateOffscreenContextProvider(
const blink::WebGraphicsContext3D::Attributes& attributes,
const std::string& debug_name) override;
- virtual scoped_refptr<StreamTextureFactory> CreateStreamTextureFactory(
+ scoped_refptr<StreamTextureFactory> CreateStreamTextureFactory(
int view_id) override;
- virtual gpu_blink::WebGraphicsContext3DInProcessCommandBufferImpl*
- CreateOffscreenGraphicsContext3D(
- const blink::WebGraphicsContext3D::Attributes& attributes) override;
+ gpu_blink::WebGraphicsContext3DInProcessCommandBufferImpl*
+ CreateOffscreenGraphicsContext3D(
+ const blink::WebGraphicsContext3D::Attributes& attributes) override;
SynchronousInputEventFilter* synchronous_input_event_filter() {
return &synchronous_input_event_filter_;

Powered by Google App Engine
This is Rietveld 408576698