OLD | NEW |
---|---|
1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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_CHILD_FILEAPI_WEBBLOBREGISTRY_IMPL_H_ | 5 #ifndef CONTENT_CHILD_FILEAPI_WEBBLOBREGISTRY_IMPL_H_ |
pwnall-personal
2014/08/01 20:37:46
I just realized that this define guard is incorrec
| |
6 #define CONTENT_CHILD_FILEAPI_WEBBLOBREGISTRY_IMPL_H_ | 6 #define CONTENT_CHILD_FILEAPI_WEBBLOBREGISTRY_IMPL_H_ |
7 | 7 |
8 #include <string> | |
9 | |
8 #include "base/memory/ref_counted.h" | 10 #include "base/memory/ref_counted.h" |
9 #include "third_party/WebKit/public/platform/WebBlobRegistry.h" | 11 #include "third_party/WebKit/public/platform/WebBlobRegistry.h" |
10 #include "webkit/common/blob/blob_data.h" | |
11 | 12 |
12 namespace blink { | 13 namespace blink { |
13 class WebBlobData; | 14 class WebBlobData; |
14 class WebString; | 15 class WebString; |
15 class WebThreadSafeData; | 16 class WebThreadSafeData; |
16 class WebURL; | 17 class WebURL; |
17 } | 18 } |
18 | 19 |
19 namespace content { | 20 namespace content { |
20 class ThreadSafeSender; | 21 class ThreadSafeSender; |
(...skipping 25 matching lines...) Expand all Loading... | |
46 private: | 47 private: |
47 void SendDataForBlob(const std::string& uuid_str, | 48 void SendDataForBlob(const std::string& uuid_str, |
48 const blink::WebThreadSafeData& data); | 49 const blink::WebThreadSafeData& data); |
49 | 50 |
50 scoped_refptr<ThreadSafeSender> sender_; | 51 scoped_refptr<ThreadSafeSender> sender_; |
51 }; | 52 }; |
52 | 53 |
53 } // namespace content | 54 } // namespace content |
54 | 55 |
55 #endif // CONTENT_CHILD_FILEAPI_WEBBLOBREGISTRY_IMPL_H_ | 56 #endif // CONTENT_CHILD_FILEAPI_WEBBLOBREGISTRY_IMPL_H_ |
OLD | NEW |