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

Unified Diff: webkit/support/weburl_loader_mock_factory.h

Issue 6250088: Cleanup everything but net/ for our first clang plugins. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years, 11 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/support/weburl_loader_mock_factory.h
diff --git a/webkit/support/weburl_loader_mock_factory.h b/webkit/support/weburl_loader_mock_factory.h
index 03d2effff631e49422fa347ab123cc7dfeaa650a..51e238d6dad3429b36c440593a9d6ceaf1587785 100644
--- a/webkit/support/weburl_loader_mock_factory.h
+++ b/webkit/support/weburl_loader_mock_factory.h
@@ -28,8 +28,8 @@ class WebURLLoaderMock;
// ServeAsynchronousRequest.
class WebURLLoaderMockFactory {
public:
- WebURLLoaderMockFactory() {}
- virtual ~WebURLLoaderMockFactory() {}
+ WebURLLoaderMockFactory();
+ virtual ~WebURLLoaderMockFactory();
// Called by TestWebKitClient to create a WebURLLoader.
// Non-mocked request are forwarded to |default_loader| which should not be
@@ -67,10 +67,7 @@ class WebURLLoaderMockFactory {
void CancelLoad(WebURLLoaderMock* loader);
private:
- struct ResponseInfo {
- WebKit::WebURLResponse response;
- FilePath file_path;
- };
+ struct ResponseInfo;
// Loads the specified request and populates the response, error and data
// accordingly.

Powered by Google App Engine
This is Rietveld 408576698