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 #pragma once | 7 #pragma once |
8 | 8 |
9 #include "base/shared_memory.h" | 9 #include "base/shared_memory.h" |
10 #include "base/string16.h" | 10 #include "base/string16.h" |
(...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
68 const std::string& v8_extension_name) const OVERRIDE; | 68 const std::string& v8_extension_name) const OVERRIDE; |
69 virtual void ScheduleIdleHandler(int64 initial_delay_ms) OVERRIDE; | 69 virtual void ScheduleIdleHandler(int64 initial_delay_ms) OVERRIDE; |
70 virtual void IdleHandler() OVERRIDE; | 70 virtual void IdleHandler() OVERRIDE; |
71 virtual int64 GetIdleNotificationDelayInMs() const OVERRIDE; | 71 virtual int64 GetIdleNotificationDelayInMs() const OVERRIDE; |
72 virtual void SetIdleNotificationDelayInMs( | 72 virtual void SetIdleNotificationDelayInMs( |
73 int64 idle_notification_delay_in_ms) OVERRIDE; | 73 int64 idle_notification_delay_in_ms) OVERRIDE; |
74 #if defined(OS_WIN) | 74 #if defined(OS_WIN) |
75 virtual void PreCacheFont(const LOGFONT& log_font) OVERRIDE; | 75 virtual void PreCacheFont(const LOGFONT& log_font) OVERRIDE; |
76 virtual void ReleaseCachedFonts() OVERRIDE; | 76 virtual void ReleaseCachedFonts() OVERRIDE; |
77 #endif | 77 #endif |
| 78 virtual void UpdateHistograms(int sequence_number) OVERRIDE; |
78 | 79 |
79 ////////////////////////////////////////////////////////////////////////// | 80 ////////////////////////////////////////////////////////////////////////// |
80 // The following functions are called by the test itself. | 81 // The following functions are called by the test itself. |
81 | 82 |
82 void set_routing_id(int32 id) { | 83 void set_routing_id(int32 id) { |
83 routing_id_ = id; | 84 routing_id_ = id; |
84 } | 85 } |
85 | 86 |
86 void set_surface_id(int32 id) { | 87 void set_surface_id(int32 id) { |
87 surface_id_ = id; | 88 surface_id_ = id; |
(...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
148 // Routing id that will be assigned to a CreateWindow Widget. | 149 // Routing id that will be assigned to a CreateWindow Widget. |
149 int32 new_window_routing_id_; | 150 int32 new_window_routing_id_; |
150 | 151 |
151 // The last known good deserializer for sync messages. | 152 // The last known good deserializer for sync messages. |
152 scoped_ptr<IPC::MessageReplyDeserializer> reply_deserializer_; | 153 scoped_ptr<IPC::MessageReplyDeserializer> reply_deserializer_; |
153 }; | 154 }; |
154 | 155 |
155 } // namespace content | 156 } // namespace content |
156 | 157 |
157 #endif // CONTENT_PUBLIC_TEST_MOCK_RENDER_THREAD_H_ | 158 #endif // CONTENT_PUBLIC_TEST_MOCK_RENDER_THREAD_H_ |
OLD | NEW |