OLD | NEW |
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 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
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 | 75 |
75 ////////////////////////////////////////////////////////////////////////// | 76 ////////////////////////////////////////////////////////////////////////// |
76 // The following functions are called by the test itself. | 77 // The following functions are called by the test itself. |
77 | 78 |
78 void set_routing_id(int32 id) { | 79 void set_routing_id(int32 id) { |
79 routing_id_ = id; | 80 routing_id_ = id; |
80 } | 81 } |
81 | 82 |
82 void set_surface_id(int32 id) { | 83 void set_surface_id(int32 id) { |
83 surface_id_ = id; | 84 surface_id_ = id; |
(...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
160 // A list of message filters added to this thread. | 161 // A list of message filters added to this thread. |
161 std::vector<scoped_refptr<IPC::MessageFilter> > filters_; | 162 std::vector<scoped_refptr<IPC::MessageFilter> > filters_; |
162 | 163 |
163 // Observers to notify. | 164 // Observers to notify. |
164 ObserverList<RenderProcessObserver> observers_; | 165 ObserverList<RenderProcessObserver> observers_; |
165 }; | 166 }; |
166 | 167 |
167 } // namespace content | 168 } // namespace content |
168 | 169 |
169 #endif // CONTENT_PUBLIC_TEST_MOCK_RENDER_THREAD_H_ | 170 #endif // CONTENT_PUBLIC_TEST_MOCK_RENDER_THREAD_H_ |
OLD | NEW |