| 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 <set> | 8 #include <set> |
| 9 #include <string> | 9 #include <string> |
| 10 #include <vector> | 10 #include <vector> |
| (...skipping 109 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 120 virtual scoped_ptr<base::SharedMemory> HostAllocateSharedMemoryBuffer( | 120 virtual scoped_ptr<base::SharedMemory> HostAllocateSharedMemoryBuffer( |
| 121 uint32 buffer_size) OVERRIDE; | 121 uint32 buffer_size) OVERRIDE; |
| 122 virtual void RegisterExtension(v8::Extension* extension) OVERRIDE; | 122 virtual void RegisterExtension(v8::Extension* extension) OVERRIDE; |
| 123 virtual void ScheduleIdleHandler(int64 initial_delay_ms) OVERRIDE; | 123 virtual void ScheduleIdleHandler(int64 initial_delay_ms) OVERRIDE; |
| 124 virtual void IdleHandler() OVERRIDE; | 124 virtual void IdleHandler() OVERRIDE; |
| 125 virtual int64 GetIdleNotificationDelayInMs() const OVERRIDE; | 125 virtual int64 GetIdleNotificationDelayInMs() const OVERRIDE; |
| 126 virtual void SetIdleNotificationDelayInMs( | 126 virtual void SetIdleNotificationDelayInMs( |
| 127 int64 idle_notification_delay_in_ms) OVERRIDE; | 127 int64 idle_notification_delay_in_ms) OVERRIDE; |
| 128 virtual void ToggleWebKitSharedTimer(bool suspend) OVERRIDE; | 128 virtual void ToggleWebKitSharedTimer(bool suspend) OVERRIDE; |
| 129 virtual void UpdateHistograms(int sequence_number) OVERRIDE; | 129 virtual void UpdateHistograms(int sequence_number) OVERRIDE; |
| 130 virtual bool ResolveProxy(const GURL& url, std::string* proxy_list) OVERRIDE; |
| 130 #if defined(OS_WIN) | 131 #if defined(OS_WIN) |
| 131 virtual void PreCacheFont(const LOGFONT& log_font) OVERRIDE; | 132 virtual void PreCacheFont(const LOGFONT& log_font) OVERRIDE; |
| 132 virtual void ReleaseCachedFonts() OVERRIDE; | 133 virtual void ReleaseCachedFonts() OVERRIDE; |
| 133 #endif | 134 #endif |
| 134 | 135 |
| 135 // ChildThread: | 136 // ChildThread: |
| 136 virtual bool IsWebFrameValid(WebKit::WebFrame* frame) OVERRIDE; | 137 virtual bool IsWebFrameValid(WebKit::WebFrame* frame) OVERRIDE; |
| 137 | 138 |
| 138 // GpuChannelHostFactory implementation: | 139 // GpuChannelHostFactory implementation: |
| 139 virtual bool IsMainThread() OVERRIDE; | 140 virtual bool IsMainThread() OVERRIDE; |
| (...skipping 233 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 373 scoped_ptr<AudioRendererMixerManager> audio_renderer_mixer_manager_; | 374 scoped_ptr<AudioRendererMixerManager> audio_renderer_mixer_manager_; |
| 374 | 375 |
| 375 HistogramCustomizer histogram_customizer_; | 376 HistogramCustomizer histogram_customizer_; |
| 376 | 377 |
| 377 DISALLOW_COPY_AND_ASSIGN(RenderThreadImpl); | 378 DISALLOW_COPY_AND_ASSIGN(RenderThreadImpl); |
| 378 }; | 379 }; |
| 379 | 380 |
| 380 } // namespace content | 381 } // namespace content |
| 381 | 382 |
| 382 #endif // CONTENT_RENDERER_RENDER_THREAD_IMPL_H_ | 383 #endif // CONTENT_RENDERER_RENDER_THREAD_IMPL_H_ |
| OLD | NEW |