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 WEBKIT_TOOLS_TEST_SHELL_TEST_SHELL_WEBBLOBREGISTRY_IMPL_H_ | 5 #ifndef WEBKIT_TOOLS_TEST_SHELL_TEST_SHELL_WEBBLOBREGISTRY_IMPL_H_ |
6 #define WEBKIT_TOOLS_TEST_SHELL_TEST_SHELL_WEBBLOBREGISTRY_IMPL_H_ | 6 #define WEBKIT_TOOLS_TEST_SHELL_TEST_SHELL_WEBBLOBREGISTRY_IMPL_H_ |
7 | 7 |
8 #include "base/memory/ref_counted.h" | 8 #include "base/memory/ref_counted.h" |
9 #include "third_party/WebKit/Source/Platform/chromium/public/WebBlobRegistry.h" | 9 #include "third_party/WebKit/public/platform/WebBlobRegistry.h" |
10 | 10 |
11 class GURL; | 11 class GURL; |
12 | 12 |
13 namespace webkit_blob { | 13 namespace webkit_blob { |
14 class BlobData; | 14 class BlobData; |
15 class BlobStorageController; | 15 class BlobStorageController; |
16 } | 16 } |
17 | 17 |
18 class TestShellWebBlobRegistryImpl | 18 class TestShellWebBlobRegistryImpl |
19 : public WebKit::WebBlobRegistry, | 19 : public WebKit::WebBlobRegistry, |
(...skipping 20 matching lines...) Expand all Loading... |
40 | 40 |
41 // Run on I/O thread. | 41 // Run on I/O thread. |
42 void AddFinishedBlob(const GURL& url, webkit_blob::BlobData* blob_data); | 42 void AddFinishedBlob(const GURL& url, webkit_blob::BlobData* blob_data); |
43 void CloneBlob(const GURL& url, const GURL& src_url); | 43 void CloneBlob(const GURL& url, const GURL& src_url); |
44 void RemoveBlob(const GURL& url); | 44 void RemoveBlob(const GURL& url); |
45 | 45 |
46 DISALLOW_COPY_AND_ASSIGN(TestShellWebBlobRegistryImpl); | 46 DISALLOW_COPY_AND_ASSIGN(TestShellWebBlobRegistryImpl); |
47 }; | 47 }; |
48 | 48 |
49 #endif // WEBKIT_TOOLS_TEST_SHELL_TEST_SHELL_WEBBLOBREGISTRY_IMPL_H_ | 49 #endif // WEBKIT_TOOLS_TEST_SHELL_TEST_SHELL_WEBBLOBREGISTRY_IMPL_H_ |
OLD | NEW |