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

Side by Side Diff: content/common/fileapi/webblobregistry_impl.cc

Issue 11828029: Update some #includes in content/common/fileapi for headers in the new Platform directory (Closed) Base URL: http://src.chromium.org/svn/trunk/src/
Patch Set: Created 7 years, 11 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
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 #include "content/common/fileapi/webblobregistry_impl.h" 5 #include "content/common/fileapi/webblobregistry_impl.h"
6 6
7 #include "base/memory/ref_counted.h" 7 #include "base/memory/ref_counted.h"
8 #include "base/shared_memory.h" 8 #include "base/shared_memory.h"
9 #include "content/common/child_thread.h" 9 #include "content/common/child_thread.h"
10 #include "content/common/fileapi/webblob_messages.h" 10 #include "content/common/fileapi/webblob_messages.h"
11 #include "third_party/WebKit/Source/WebKit/chromium/public/platform/WebBlobData. h" 11 #include "third_party/WebKit/Source/Platform/chromium/public/WebBlobData.h"
12 #include "third_party/WebKit/Source/WebKit/chromium/public/platform/WebString.h" 12 #include "third_party/WebKit/Source/Platform/chromium/public/WebString.h"
13 #include "third_party/WebKit/Source/WebKit/chromium/public/platform/WebURL.h" 13 #include "third_party/WebKit/Source/Platform/chromium/public/WebURL.h"
14 #include "webkit/base/file_path_string_conversions.h" 14 #include "webkit/base/file_path_string_conversions.h"
15 #include "webkit/blob/blob_data.h" 15 #include "webkit/blob/blob_data.h"
16 16
17 using WebKit::WebBlobData; 17 using WebKit::WebBlobData;
18 using WebKit::WebString; 18 using WebKit::WebString;
19 using WebKit::WebURL; 19 using WebKit::WebURL;
20 20
21 namespace content { 21 namespace content {
22 22
23 WebBlobRegistryImpl::WebBlobRegistryImpl(ChildThread* child_thread) 23 WebBlobRegistryImpl::WebBlobRegistryImpl(ChildThread* child_thread)
(...skipping 85 matching lines...) Expand 10 before | Expand all | Expand 10 after
109 void WebBlobRegistryImpl::registerBlobURL( 109 void WebBlobRegistryImpl::registerBlobURL(
110 const WebURL& url, const WebURL& src_url) { 110 const WebURL& url, const WebURL& src_url) {
111 child_thread_->Send(new BlobHostMsg_CloneBlob(url, src_url)); 111 child_thread_->Send(new BlobHostMsg_CloneBlob(url, src_url));
112 } 112 }
113 113
114 void WebBlobRegistryImpl::unregisterBlobURL(const WebURL& url) { 114 void WebBlobRegistryImpl::unregisterBlobURL(const WebURL& url) {
115 child_thread_->Send(new BlobHostMsg_RemoveBlob(url)); 115 child_thread_->Send(new BlobHostMsg_RemoveBlob(url));
116 } 116 }
117 117
118 } // namespace content 118 } // namespace content
OLDNEW
« no previous file with comments | « content/common/fileapi/webblobregistry_impl.h ('k') | content/common/fileapi/webfilesystem_callback_dispatcher.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698