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_RENDERER_WEBKITPLATFORMSUPPORT_IMPL_H_ | 5 #ifndef CONTENT_RENDERER_RENDERER_WEBKITPLATFORMSUPPORT_IMPL_H_ |
6 #define CONTENT_RENDERER_RENDERER_WEBKITPLATFORMSUPPORT_IMPL_H_ | 6 #define CONTENT_RENDERER_RENDERER_WEBKITPLATFORMSUPPORT_IMPL_H_ |
7 #pragma once | |
8 | 7 |
9 #include "base/compiler_specific.h" | 8 #include "base/compiler_specific.h" |
10 #include "base/memory/scoped_ptr.h" | 9 #include "base/memory/scoped_ptr.h" |
11 #include "base/platform_file.h" | 10 #include "base/platform_file.h" |
12 #include "content/common/content_export.h" | 11 #include "content/common/content_export.h" |
13 #include "content/common/webkitplatformsupport_impl.h" | 12 #include "content/common/webkitplatformsupport_impl.h" |
14 #include "third_party/WebKit/Source/WebKit/chromium/public/platform/WebGraphicsC
ontext3D.h" | 13 #include "third_party/WebKit/Source/WebKit/chromium/public/platform/WebGraphicsC
ontext3D.h" |
15 | 14 |
16 class RendererClipboardClient; | 15 class RendererClipboardClient; |
17 class WebSharedWorkerRepositoryImpl; | 16 class WebSharedWorkerRepositoryImpl; |
(...skipping 114 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
132 scoped_ptr<WebKit::WebIDBFactory> web_idb_factory_; | 131 scoped_ptr<WebKit::WebIDBFactory> web_idb_factory_; |
133 | 132 |
134 scoped_ptr<WebFileSystemImpl> web_file_system_; | 133 scoped_ptr<WebFileSystemImpl> web_file_system_; |
135 | 134 |
136 scoped_ptr<WebKit::WebBlobRegistry> blob_registry_; | 135 scoped_ptr<WebKit::WebBlobRegistry> blob_registry_; |
137 | 136 |
138 scoped_ptr<content::GamepadSharedMemoryReader> gamepad_shared_memory_reader_; | 137 scoped_ptr<content::GamepadSharedMemoryReader> gamepad_shared_memory_reader_; |
139 }; | 138 }; |
140 | 139 |
141 #endif // CONTENT_RENDERER_RENDERER_WEBKITPLATFORMSUPPORT_IMPL_H_ | 140 #endif // CONTENT_RENDERER_RENDERER_WEBKITPLATFORMSUPPORT_IMPL_H_ |
OLD | NEW |