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

Unified Diff: chrome_frame/test/net/test_automation_provider.h

Issue 5298008: net: Add namespace net to URLRequest and URLRequestJob classes. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: some chromeos fixes Created 10 years, 1 month 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: chrome_frame/test/net/test_automation_provider.h
diff --git a/chrome_frame/test/net/test_automation_provider.h b/chrome_frame/test/net/test_automation_provider.h
index 9d3f65b77e95fc3a53081dd668367c638eb75476..bc98b3a3cd0004783c475df218523ac82f08402c 100644
--- a/chrome_frame/test/net/test_automation_provider.h
+++ b/chrome_frame/test/net/test_automation_provider.h
@@ -7,9 +7,12 @@
#include <string>
#include "chrome/browser/automation/automation_provider.h"
-class TestAutomationResourceMessageFilter;
+namespace net {
class URLRequest;
class URLRequestJob;
+} // namespace net
+
+class TestAutomationResourceMessageFilter;
// Callback interface for TestAutomationProvider.
class TestAutomationProviderDelegate {
@@ -37,8 +40,8 @@ class TestAutomationProvider
virtual bool Send(IPC::Message* msg);
// Protocol factory for handling http/https requests over automation.
- static URLRequestJob* Factory(URLRequest* request,
- const std::string& scheme);
+ static net::URLRequestJob* Factory(net::URLRequest* request,
+ const std::string& scheme);
// Call to instantiate and initialize a new instance of
// TestAutomationProvider.

Powered by Google App Engine
This is Rietveld 408576698