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 434 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
445 #if defined(OS_MACOSX) | 445 #if defined(OS_MACOSX) |
446 void OnUpdateScrollbarTheme(float initial_button_delay, | 446 void OnUpdateScrollbarTheme(float initial_button_delay, |
447 float autoscroll_button_delay, | 447 float autoscroll_button_delay, |
448 bool jump_on_track_click, | 448 bool jump_on_track_click, |
449 blink::ScrollerStyle preferred_scroller_style, | 449 blink::ScrollerStyle preferred_scroller_style, |
450 bool redraw); | 450 bool redraw); |
451 #endif | 451 #endif |
452 void OnCreateNewSharedWorker( | 452 void OnCreateNewSharedWorker( |
453 const WorkerProcessMsg_CreateWorker_Params& params); | 453 const WorkerProcessMsg_CreateWorker_Params& params); |
454 | 454 |
455 void IdleHandlerInForegroundTab(); | |
456 | |
457 scoped_ptr<WebGraphicsContext3DCommandBufferImpl> CreateOffscreenContext3d(); | 455 scoped_ptr<WebGraphicsContext3DCommandBufferImpl> CreateOffscreenContext3d(); |
458 | 456 |
459 // These objects live solely on the render thread. | 457 // These objects live solely on the render thread. |
460 scoped_ptr<AppCacheDispatcher> appcache_dispatcher_; | 458 scoped_ptr<AppCacheDispatcher> appcache_dispatcher_; |
461 scoped_ptr<DomStorageDispatcher> dom_storage_dispatcher_; | 459 scoped_ptr<DomStorageDispatcher> dom_storage_dispatcher_; |
462 scoped_ptr<IndexedDBDispatcher> main_thread_indexed_db_dispatcher_; | 460 scoped_ptr<IndexedDBDispatcher> main_thread_indexed_db_dispatcher_; |
463 scoped_ptr<RendererWebKitPlatformSupportImpl> webkit_platform_support_; | 461 scoped_ptr<RendererWebKitPlatformSupportImpl> webkit_platform_support_; |
464 scoped_ptr<EmbeddedWorkerDispatcher> embedded_worker_dispatcher_; | 462 scoped_ptr<EmbeddedWorkerDispatcher> embedded_worker_dispatcher_; |
465 | 463 |
466 // Used on the render thread and deleted by WebKit at shutdown. | 464 // Used on the render thread and deleted by WebKit at shutdown. |
(...skipping 114 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
581 bool is_one_copy_enabled_; | 579 bool is_one_copy_enabled_; |
582 | 580 |
583 std::map<int, mojo::MessagePipeHandle> pending_render_frame_connects_; | 581 std::map<int, mojo::MessagePipeHandle> pending_render_frame_connects_; |
584 | 582 |
585 DISALLOW_COPY_AND_ASSIGN(RenderThreadImpl); | 583 DISALLOW_COPY_AND_ASSIGN(RenderThreadImpl); |
586 }; | 584 }; |
587 | 585 |
588 } // namespace content | 586 } // namespace content |
589 | 587 |
590 #endif // CONTENT_RENDERER_RENDER_THREAD_IMPL_H_ | 588 #endif // CONTENT_RENDERER_RENDER_THREAD_IMPL_H_ |
OLD | NEW |