| 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 shell::InterfaceRegistry* GetInterfaceRegistry() override; | |
| 198 shell::InterfaceProvider* GetRemoteInterfaces() override; | |
| 199 | 197 |
| 200 // CompositorDependencies implementation. | 198 // CompositorDependencies implementation. |
| 201 bool IsGpuRasterizationForced() override; | 199 bool IsGpuRasterizationForced() override; |
| 202 bool IsGpuRasterizationEnabled() override; | 200 bool IsGpuRasterizationEnabled() override; |
| 203 bool IsAsyncWorkerContextEnabled() override; | 201 bool IsAsyncWorkerContextEnabled() override; |
| 204 int GetGpuRasterizationMSAASampleCount() override; | 202 int GetGpuRasterizationMSAASampleCount() override; |
| 205 bool IsLcdTextEnabled() override; | 203 bool IsLcdTextEnabled() override; |
| 206 bool IsDistanceFieldTextEnabled() override; | 204 bool IsDistanceFieldTextEnabled() override; |
| 207 bool IsZeroCopyEnabled() override; | 205 bool IsZeroCopyEnabled() override; |
| 208 bool IsPartialRasterEnabled() override; | 206 bool IsPartialRasterEnabled() override; |
| (...skipping 499 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 708 DISALLOW_COPY_AND_ASSIGN(RenderThreadImpl); | 706 DISALLOW_COPY_AND_ASSIGN(RenderThreadImpl); |
| 709 }; | 707 }; |
| 710 | 708 |
| 711 #if defined(COMPILER_MSVC) | 709 #if defined(COMPILER_MSVC) |
| 712 #pragma warning(pop) | 710 #pragma warning(pop) |
| 713 #endif | 711 #endif |
| 714 | 712 |
| 715 } // namespace content | 713 } // namespace content |
| 716 | 714 |
| 717 #endif // CONTENT_RENDERER_RENDER_THREAD_IMPL_H_ | 715 #endif // CONTENT_RENDERER_RENDER_THREAD_IMPL_H_ |
| OLD | NEW |