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

Side by Side Diff: content/public/test/mock_render_thread.h

Issue 629203002: Replace OVERRIDE and FINAL with override and final in content/public/[a-s]* (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 2 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 unified diff | Download patch
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef CONTENT_PUBLIC_TEST_MOCK_RENDER_THREAD_H_ 5 #ifndef CONTENT_PUBLIC_TEST_MOCK_RENDER_THREAD_H_
6 #define CONTENT_PUBLIC_TEST_MOCK_RENDER_THREAD_H_ 6 #define CONTENT_PUBLIC_TEST_MOCK_RENDER_THREAD_H_
7 7
8 #include "base/memory/shared_memory.h" 8 #include "base/memory/shared_memory.h"
9 #include "base/observer_list.h" 9 #include "base/observer_list.h"
10 #include "base/strings/string16.h" 10 #include "base/strings/string16.h"
(...skipping 18 matching lines...) Expand all
29 // ViewMsg_Close : async, send to the Widget. 29 // ViewMsg_Close : async, send to the Widget.
30 class MockRenderThread : public RenderThread { 30 class MockRenderThread : public RenderThread {
31 public: 31 public:
32 MockRenderThread(); 32 MockRenderThread();
33 virtual ~MockRenderThread(); 33 virtual ~MockRenderThread();
34 34
35 // Provides access to the messages that have been received by this thread. 35 // Provides access to the messages that have been received by this thread.
36 IPC::TestSink& sink() { return sink_; } 36 IPC::TestSink& sink() { return sink_; }
37 37
38 // RenderThread implementation: 38 // RenderThread implementation:
39 virtual bool Send(IPC::Message* msg) OVERRIDE; 39 virtual bool Send(IPC::Message* msg) override;
40 virtual base::MessageLoop* GetMessageLoop() OVERRIDE; 40 virtual base::MessageLoop* GetMessageLoop() override;
41 virtual IPC::SyncChannel* GetChannel() OVERRIDE; 41 virtual IPC::SyncChannel* GetChannel() override;
42 virtual std::string GetLocale() OVERRIDE; 42 virtual std::string GetLocale() override;
43 virtual IPC::SyncMessageFilter* GetSyncMessageFilter() OVERRIDE; 43 virtual IPC::SyncMessageFilter* GetSyncMessageFilter() override;
44 virtual scoped_refptr<base::MessageLoopProxy> GetIOMessageLoopProxy() 44 virtual scoped_refptr<base::MessageLoopProxy> GetIOMessageLoopProxy()
45 OVERRIDE; 45 override;
46 virtual void AddRoute(int32 routing_id, IPC::Listener* listener) OVERRIDE; 46 virtual void AddRoute(int32 routing_id, IPC::Listener* listener) override;
47 virtual void RemoveRoute(int32 routing_id) OVERRIDE; 47 virtual void RemoveRoute(int32 routing_id) override;
48 virtual int GenerateRoutingID() OVERRIDE; 48 virtual int GenerateRoutingID() override;
49 virtual void AddFilter(IPC::MessageFilter* filter) OVERRIDE; 49 virtual void AddFilter(IPC::MessageFilter* filter) override;
50 virtual void RemoveFilter(IPC::MessageFilter* filter) OVERRIDE; 50 virtual void RemoveFilter(IPC::MessageFilter* filter) override;
51 virtual void AddObserver(RenderProcessObserver* observer) OVERRIDE; 51 virtual void AddObserver(RenderProcessObserver* observer) override;
52 virtual void RemoveObserver(RenderProcessObserver* observer) OVERRIDE; 52 virtual void RemoveObserver(RenderProcessObserver* observer) override;
53 virtual void SetResourceDispatcherDelegate( 53 virtual void SetResourceDispatcherDelegate(
54 ResourceDispatcherDelegate* delegate) OVERRIDE; 54 ResourceDispatcherDelegate* delegate) override;
55 virtual void EnsureWebKitInitialized() OVERRIDE; 55 virtual void EnsureWebKitInitialized() override;
56 virtual void RecordAction(const base::UserMetricsAction& action) OVERRIDE; 56 virtual void RecordAction(const base::UserMetricsAction& action) override;
57 virtual void RecordComputedAction(const std::string& action) OVERRIDE; 57 virtual void RecordComputedAction(const std::string& action) override;
58 virtual scoped_ptr<base::SharedMemory> HostAllocateSharedMemoryBuffer( 58 virtual scoped_ptr<base::SharedMemory> HostAllocateSharedMemoryBuffer(
59 size_t buffer_size) OVERRIDE; 59 size_t buffer_size) override;
60 virtual void RegisterExtension(v8::Extension* extension) OVERRIDE; 60 virtual void RegisterExtension(v8::Extension* extension) override;
61 virtual void ScheduleIdleHandler(int64 initial_delay_ms) OVERRIDE; 61 virtual void ScheduleIdleHandler(int64 initial_delay_ms) override;
62 virtual void IdleHandler() OVERRIDE; 62 virtual void IdleHandler() override;
63 virtual int64 GetIdleNotificationDelayInMs() const OVERRIDE; 63 virtual int64 GetIdleNotificationDelayInMs() const override;
64 virtual void SetIdleNotificationDelayInMs( 64 virtual void SetIdleNotificationDelayInMs(
65 int64 idle_notification_delay_in_ms) OVERRIDE; 65 int64 idle_notification_delay_in_ms) override;
66 virtual void UpdateHistograms(int sequence_number) OVERRIDE; 66 virtual void UpdateHistograms(int sequence_number) override;
67 virtual int PostTaskToAllWebWorkers(const base::Closure& closure) OVERRIDE; 67 virtual int PostTaskToAllWebWorkers(const base::Closure& closure) override;
68 virtual bool ResolveProxy(const GURL& url, std::string* proxy_list) OVERRIDE; 68 virtual bool ResolveProxy(const GURL& url, std::string* proxy_list) override;
69 virtual base::WaitableEvent* GetShutdownEvent() OVERRIDE; 69 virtual base::WaitableEvent* GetShutdownEvent() override;
70 #if defined(OS_WIN) 70 #if defined(OS_WIN)
71 virtual void PreCacheFont(const LOGFONT& log_font) OVERRIDE; 71 virtual void PreCacheFont(const LOGFONT& log_font) override;
72 virtual void ReleaseCachedFonts() OVERRIDE; 72 virtual void ReleaseCachedFonts() override;
73 #endif 73 #endif
74 virtual ServiceRegistry* GetServiceRegistry() OVERRIDE; 74 virtual ServiceRegistry* GetServiceRegistry() override;
75 75
76 ////////////////////////////////////////////////////////////////////////// 76 //////////////////////////////////////////////////////////////////////////
77 // The following functions are called by the test itself. 77 // The following functions are called by the test itself.
78 78
79 void set_routing_id(int32 id) { 79 void set_routing_id(int32 id) {
80 routing_id_ = id; 80 routing_id_ = id;
81 } 81 }
82 82
83 void set_surface_id(int32 id) { 83 void set_surface_id(int32 id) {
84 surface_id_ = id; 84 surface_id_ = id;
(...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after
161 // A list of message filters added to this thread. 161 // A list of message filters added to this thread.
162 std::vector<scoped_refptr<IPC::MessageFilter> > filters_; 162 std::vector<scoped_refptr<IPC::MessageFilter> > filters_;
163 163
164 // Observers to notify. 164 // Observers to notify.
165 ObserverList<RenderProcessObserver> observers_; 165 ObserverList<RenderProcessObserver> observers_;
166 }; 166 };
167 167
168 } // namespace content 168 } // namespace content
169 169
170 #endif // CONTENT_PUBLIC_TEST_MOCK_RENDER_THREAD_H_ 170 #endif // CONTENT_PUBLIC_TEST_MOCK_RENDER_THREAD_H_
OLDNEW
« no previous file with comments | « content/public/test/mock_render_process_host.h ('k') | content/public/test/mock_resource_context.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698