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_RENDERER_RENDER_THREAD_IMPL_H_ | 5 #ifndef CONTENT_RENDERER_RENDER_THREAD_IMPL_H_ |
6 #define CONTENT_RENDERER_RENDER_THREAD_IMPL_H_ | 6 #define CONTENT_RENDERER_RENDER_THREAD_IMPL_H_ |
7 | 7 |
8 #include <stddef.h> | 8 #include <stddef.h> |
9 #include <stdint.h> | 9 #include <stdint.h> |
10 | 10 |
(...skipping 176 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
187 void RegisterExtension(v8::Extension* extension) override; | 187 void RegisterExtension(v8::Extension* extension) override; |
188 void ScheduleIdleHandler(int64_t initial_delay_ms) override; | 188 void ScheduleIdleHandler(int64_t initial_delay_ms) override; |
189 void IdleHandler() override; | 189 void IdleHandler() override; |
190 int64_t GetIdleNotificationDelayInMs() const override; | 190 int64_t GetIdleNotificationDelayInMs() const override; |
191 void SetIdleNotificationDelayInMs( | 191 void SetIdleNotificationDelayInMs( |
192 int64_t idle_notification_delay_in_ms) override; | 192 int64_t idle_notification_delay_in_ms) override; |
193 void UpdateHistograms(int sequence_number) override; | 193 void UpdateHistograms(int sequence_number) override; |
194 int PostTaskToAllWebWorkers(const base::Closure& closure) override; | 194 int PostTaskToAllWebWorkers(const base::Closure& closure) override; |
195 bool ResolveProxy(const GURL& url, std::string* proxy_list) override; | 195 bool ResolveProxy(const GURL& url, std::string* proxy_list) override; |
196 base::WaitableEvent* GetShutdownEvent() override; | 196 base::WaitableEvent* GetShutdownEvent() override; |
197 ServiceRegistry* GetServiceRegistry() override; | 197 shell::InterfaceRegistry* GetInterfaceRegistry() override; |
| 198 shell::InterfaceProvider* GetRemoteInterfaces() override; |
198 | 199 |
199 // CompositorDependencies implementation. | 200 // CompositorDependencies implementation. |
200 bool IsGpuRasterizationForced() override; | 201 bool IsGpuRasterizationForced() override; |
201 bool IsGpuRasterizationEnabled() override; | 202 bool IsGpuRasterizationEnabled() override; |
202 bool IsAsyncWorkerContextEnabled() override; | 203 bool IsAsyncWorkerContextEnabled() override; |
203 int GetGpuRasterizationMSAASampleCount() override; | 204 int GetGpuRasterizationMSAASampleCount() override; |
204 bool IsLcdTextEnabled() override; | 205 bool IsLcdTextEnabled() override; |
205 bool IsDistanceFieldTextEnabled() override; | 206 bool IsDistanceFieldTextEnabled() override; |
206 bool IsZeroCopyEnabled() override; | 207 bool IsZeroCopyEnabled() override; |
207 bool IsPartialRasterEnabled() override; | 208 bool IsPartialRasterEnabled() override; |
(...skipping 499 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
707 DISALLOW_COPY_AND_ASSIGN(RenderThreadImpl); | 708 DISALLOW_COPY_AND_ASSIGN(RenderThreadImpl); |
708 }; | 709 }; |
709 | 710 |
710 #if defined(COMPILER_MSVC) | 711 #if defined(COMPILER_MSVC) |
711 #pragma warning(pop) | 712 #pragma warning(pop) |
712 #endif | 713 #endif |
713 | 714 |
714 } // namespace content | 715 } // namespace content |
715 | 716 |
716 #endif // CONTENT_RENDERER_RENDER_THREAD_IMPL_H_ | 717 #endif // CONTENT_RENDERER_RENDER_THREAD_IMPL_H_ |
OLD | NEW |