Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(158)

Side by Side Diff: content/worker/worker_webkitplatformsupport_impl.h

Issue 11227033: Move a bunch of code in content\common (as well as a few left in renderer) to the content namespace. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: fix cros Created 8 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « content/worker/worker_thread.cc ('k') | gpu/ipc/command_buffer_proxy.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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_WORKER_WORKER_WEBKITPLATFORMSUPPORT_IMPL_H_ 5 #ifndef CONTENT_WORKER_WORKER_WEBKITPLATFORMSUPPORT_IMPL_H_
6 #define CONTENT_WORKER_WORKER_WEBKITPLATFORMSUPPORT_IMPL_H_ 6 #define CONTENT_WORKER_WORKER_WEBKITPLATFORMSUPPORT_IMPL_H_
7 7
8 #include "base/memory/scoped_ptr.h" 8 #include "base/memory/scoped_ptr.h"
9 #include "content/common/webkitplatformsupport_impl.h" 9 #include "content/common/webkitplatformsupport_impl.h"
10 #include "third_party/WebKit/Source/Platform/chromium/public/WebMimeRegistry.h" 10 #include "third_party/WebKit/Source/Platform/chromium/public/WebMimeRegistry.h"
11 11
12 class WebFileSystemImpl;
13
14 namespace WebKit { 12 namespace WebKit {
15 class WebFileUtilities; 13 class WebFileUtilities;
16 } 14 }
17 15
18 namespace content { 16 namespace content {
17 class WebFileSystemImpl;
19 18
20 class WorkerWebKitPlatformSupportImpl : public WebKitPlatformSupportImpl, 19 class WorkerWebKitPlatformSupportImpl : public WebKitPlatformSupportImpl,
21 public WebKit::WebMimeRegistry { 20 public WebKit::WebMimeRegistry {
22 public: 21 public:
23 WorkerWebKitPlatformSupportImpl(); 22 WorkerWebKitPlatformSupportImpl();
24 virtual ~WorkerWebKitPlatformSupportImpl(); 23 virtual ~WorkerWebKitPlatformSupportImpl();
25 24
26 // WebKitPlatformSupport methods: 25 // WebKitPlatformSupport methods:
27 virtual WebKit::WebClipboard* clipboard(); 26 virtual WebKit::WebClipboard* clipboard();
28 virtual WebKit::WebMimeRegistry* mimeRegistry(); 27 virtual WebKit::WebMimeRegistry* mimeRegistry();
(...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after
95 94
96 scoped_ptr<WebKit::WebBlobRegistry> blob_registry_; 95 scoped_ptr<WebKit::WebBlobRegistry> blob_registry_;
97 96
98 scoped_ptr<WebFileSystemImpl> web_file_system_; 97 scoped_ptr<WebFileSystemImpl> web_file_system_;
99 scoped_ptr<WebKit::WebIDBFactory> web_idb_factory_; 98 scoped_ptr<WebKit::WebIDBFactory> web_idb_factory_;
100 }; 99 };
101 100
102 } // namespace content 101 } // namespace content
103 102
104 #endif // CONTENT_WORKER_WORKER_WEBKITPLATFORMSUPPORT_IMPL_H_ 103 #endif // CONTENT_WORKER_WORKER_WEBKITPLATFORMSUPPORT_IMPL_H_
OLDNEW
« no previous file with comments | « content/worker/worker_thread.cc ('k') | gpu/ipc/command_buffer_proxy.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698