summaryrefslogtreecommitdiffstats
path: root/webkit/tools/test_shell/test_shell_webblobregistry_impl.h
diff options
context:
space:
mode:
Diffstat (limited to 'webkit/tools/test_shell/test_shell_webblobregistry_impl.h')
-rw-r--r--webkit/tools/test_shell/test_shell_webblobregistry_impl.h13
1 files changed, 6 insertions, 7 deletions
diff --git a/webkit/tools/test_shell/test_shell_webblobregistry_impl.h b/webkit/tools/test_shell/test_shell_webblobregistry_impl.h
index 090a4e9..d5fa96c 100644
--- a/webkit/tools/test_shell/test_shell_webblobregistry_impl.h
+++ b/webkit/tools/test_shell/test_shell_webblobregistry_impl.h
@@ -32,15 +32,14 @@ class TestShellWebBlobRegistryImpl
const WebKit::WebURL& src_url);
virtual void unregisterBlobURL(const WebKit::WebURL& url);
- // Run on I/O thread.
- void DoRegisterBlobUrl(const GURL& url, webkit_blob::BlobData* blob_data);
- void DoRegisterBlobUrlFrom(const GURL& url, const GURL& src_url);
- void DoUnregisterBlobUrl(const GURL& url);
-
- protected:
+ private:
friend class base::RefCountedThreadSafe<TestShellWebBlobRegistryImpl>;
- private:
+ // Run on I/O thread.
+ void AddFinishedBlob(const GURL& url, webkit_blob::BlobData* blob_data);
+ void CloneBlob(const GURL& url, const GURL& src_url);
+ void RemoveBlob(const GURL& url);
+
DISALLOW_COPY_AND_ASSIGN(TestShellWebBlobRegistryImpl);
};