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

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

Issue 10066044: RefCounted types should not have public destructors, webkit/ (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Implementation ordering Created 8 years, 8 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
« no previous file with comments | « webkit/tools/test_shell/test_shell_webblobregistry_impl.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/tools/test_shell/test_shell_webblobregistry_impl.cc
diff --git a/webkit/tools/test_shell/test_shell_webblobregistry_impl.cc b/webkit/tools/test_shell/test_shell_webblobregistry_impl.cc
index 1b8a31f963bd4d9ca46d601a71d9203c661580cd..c5046d7e4012546f6110c405942959bcc99b7af5 100644
--- a/webkit/tools/test_shell/test_shell_webblobregistry_impl.cc
+++ b/webkit/tools/test_shell/test_shell_webblobregistry_impl.cc
@@ -36,9 +36,6 @@ void TestShellWebBlobRegistryImpl::Cleanup() {
g_blob_storage_controller = NULL;
}
-TestShellWebBlobRegistryImpl::TestShellWebBlobRegistryImpl() {
-}
-
void TestShellWebBlobRegistryImpl::registerBlobURL(
const WebURL& url, WebBlobData& data) {
DCHECK(g_io_thread);
@@ -66,6 +63,8 @@ void TestShellWebBlobRegistryImpl::unregisterBlobURL(const WebURL& url) {
thread_safe_url));
}
+TestShellWebBlobRegistryImpl::TestShellWebBlobRegistryImpl() {}
+
void TestShellWebBlobRegistryImpl::AddFinishedBlob(
const GURL& url, BlobData* blob_data) {
DCHECK(g_blob_storage_controller);
« no previous file with comments | « webkit/tools/test_shell/test_shell_webblobregistry_impl.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698