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 #pragma once | |
8 | 7 |
9 #include <set> | 8 #include <set> |
10 #include <string> | 9 #include <string> |
11 #include <vector> | 10 #include <vector> |
12 | 11 |
13 #include "base/observer_list.h" | 12 #include "base/observer_list.h" |
14 #include "base/time.h" | 13 #include "base/time.h" |
15 #include "base/timer.h" | 14 #include "base/timer.h" |
16 #include "build/build_config.h" | 15 #include "build/build_config.h" |
17 #include "content/common/child_process.h" | 16 #include "content/common/child_process.h" |
(...skipping 282 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
300 scoped_ptr<content::BrowserPluginRegistry> browser_plugin_registry_; | 299 scoped_ptr<content::BrowserPluginRegistry> browser_plugin_registry_; |
301 | 300 |
302 ObserverList<content::RenderProcessObserver> observers_; | 301 ObserverList<content::RenderProcessObserver> observers_; |
303 | 302 |
304 scoped_ptr<WebGraphicsContext3DCommandBufferImpl> gpu_vda_context3d_; | 303 scoped_ptr<WebGraphicsContext3DCommandBufferImpl> gpu_vda_context3d_; |
305 | 304 |
306 DISALLOW_COPY_AND_ASSIGN(RenderThreadImpl); | 305 DISALLOW_COPY_AND_ASSIGN(RenderThreadImpl); |
307 }; | 306 }; |
308 | 307 |
309 #endif // CONTENT_RENDERER_RENDER_THREAD_IMPL_H_ | 308 #endif // CONTENT_RENDERER_RENDER_THREAD_IMPL_H_ |
OLD | NEW |