| OLD | NEW |
| 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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 CHROME_RENDERER_RENDERER_WEBKITCLIENT_IMPL_H_ | 5 #ifndef CONTENT_RENDERER_RENDERER_WEBKITCLIENT_IMPL_H_ |
| 6 #define CHROME_RENDERER_RENDERER_WEBKITCLIENT_IMPL_H_ | 6 #define CONTENT_RENDERER_RENDERER_WEBKITCLIENT_IMPL_H_ |
| 7 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include "base/platform_file.h" | 9 #include "base/platform_file.h" |
| 10 #include "base/scoped_ptr.h" | 10 #include "base/scoped_ptr.h" |
| 11 #include "webkit/glue/webkitclient_impl.h" | 11 #include "webkit/glue/webkitclient_impl.h" |
| 12 | 12 |
| 13 class WebSharedWorkerRepositoryImpl; | 13 class WebSharedWorkerRepositoryImpl; |
| 14 class WebFileSystemImpl; | 14 class WebFileSystemImpl; |
| 15 | 15 |
| 16 namespace IPC { | 16 namespace IPC { |
| (...skipping 90 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 107 // to WorkerService on the browser thread. | 107 // to WorkerService on the browser thread. |
| 108 scoped_ptr<WebSharedWorkerRepositoryImpl> shared_worker_repository_; | 108 scoped_ptr<WebSharedWorkerRepositoryImpl> shared_worker_repository_; |
| 109 | 109 |
| 110 scoped_ptr<WebKit::WebIDBFactory> web_idb_factory_; | 110 scoped_ptr<WebKit::WebIDBFactory> web_idb_factory_; |
| 111 | 111 |
| 112 scoped_ptr<WebFileSystemImpl> web_file_system_; | 112 scoped_ptr<WebFileSystemImpl> web_file_system_; |
| 113 | 113 |
| 114 scoped_ptr<WebKit::WebBlobRegistry> blob_registry_; | 114 scoped_ptr<WebKit::WebBlobRegistry> blob_registry_; |
| 115 }; | 115 }; |
| 116 | 116 |
| 117 #endif // CHROME_RENDERER_RENDERER_WEBKITCLIENT_IMPL_H_ | 117 #endif // CONTENT_RENDERER_RENDERER_WEBKITCLIENT_IMPL_H_ |
| OLD | NEW |