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

Side by Side Diff: webkit/tools/test_shell/test_shell_webblobregistry_impl.cc

Issue 8215002: base::Bind: Cleanup in test_shell. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Mac build fix. 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 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 #include "webkit/tools/test_shell/test_shell_webblobregistry_impl.h" 5 #include "webkit/tools/test_shell/test_shell_webblobregistry_impl.h"
6 6
7 #include "base/bind.h"
csilv 2011/10/10 21:01:49 There are no changes in this file so this is proba
James Hawkins 2011/10/10 21:55:49 Done. They're blocked.
michaeln 2011/10/10 22:02:21 these are being taken care of in another CL http:/
James Hawkins 2011/10/10 22:06:21 Cool, sg.
7 #include "base/message_loop.h" 8 #include "base/message_loop.h"
8 #include "base/task.h" 9 #include "base/task.h"
9 #include "googleurl/src/gurl.h" 10 #include "googleurl/src/gurl.h"
10 #include "third_party/WebKit/Source/WebKit/chromium/public/WebBlobData.h" 11 #include "third_party/WebKit/Source/WebKit/chromium/public/WebBlobData.h"
11 #include "third_party/WebKit/Source/WebKit/chromium/public/WebCString.h" 12 #include "third_party/WebKit/Source/WebKit/chromium/public/WebCString.h"
12 #include "third_party/WebKit/Source/WebKit/chromium/public/WebString.h" 13 #include "third_party/WebKit/Source/WebKit/chromium/public/WebString.h"
13 #include "third_party/WebKit/Source/WebKit/chromium/public/WebURL.h" 14 #include "third_party/WebKit/Source/WebKit/chromium/public/WebURL.h"
14 #include "webkit/blob/blob_data.h" 15 #include "webkit/blob/blob_data.h"
15 #include "webkit/blob/blob_storage_controller.h" 16 #include "webkit/blob/blob_storage_controller.h"
16 17
(...skipping 98 matching lines...) Expand 10 before | Expand all | Expand 10 after
115 void TestShellWebBlobRegistryImpl::DoRegisterBlobUrlFrom( 116 void TestShellWebBlobRegistryImpl::DoRegisterBlobUrlFrom(
116 const GURL& url, const GURL& src_url) { 117 const GURL& url, const GURL& src_url) {
117 DCHECK(g_blob_storage_controller); 118 DCHECK(g_blob_storage_controller);
118 g_blob_storage_controller->RegisterBlobUrlFrom(url, src_url); 119 g_blob_storage_controller->RegisterBlobUrlFrom(url, src_url);
119 } 120 }
120 121
121 void TestShellWebBlobRegistryImpl::DoUnregisterBlobUrl(const GURL& url) { 122 void TestShellWebBlobRegistryImpl::DoUnregisterBlobUrl(const GURL& url) {
122 DCHECK(g_blob_storage_controller); 123 DCHECK(g_blob_storage_controller);
123 g_blob_storage_controller->UnregisterBlobUrl(url); 124 g_blob_storage_controller->UnregisterBlobUrl(url);
124 } 125 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698