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

Unified Diff: webkit/tools/test_shell/test_shell_webblobregistry_impl.h

Issue 7974011: Break large blobs into multiple ipcs during creation. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 9 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 side-by-side diff with in-line comments
Download patch
Index: webkit/tools/test_shell/test_shell_webblobregistry_impl.h
===================================================================
--- webkit/tools/test_shell/test_shell_webblobregistry_impl.h (revision 105887)
+++ webkit/tools/test_shell/test_shell_webblobregistry_impl.h (working copy)
@@ -32,15 +32,14 @@
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);
};
« no previous file with comments | « webkit/fileapi/file_system_operation_write_unittest.cc ('k') | webkit/tools/test_shell/test_shell_webblobregistry_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698