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

Unified Diff: content/shell/shell_url_request_context_getter.h

Issue 13243003: Move MessageLoop to base namespace. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 9 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 | « content/renderer/devtools/devtools_agent_filter.h ('k') | extensions/browser/file_reader.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/shell/shell_url_request_context_getter.h
diff --git a/content/shell/shell_url_request_context_getter.h b/content/shell/shell_url_request_context_getter.h
index 846c5d38f1a581da2a06bb6d4e736b42bea5efd3..d7a96b2bf147526bb2c879ebb8f39b6df2d68064 100644
--- a/content/shell/shell_url_request_context_getter.h
+++ b/content/shell/shell_url_request_context_getter.h
@@ -13,7 +13,9 @@
#include "net/url_request/url_request_context_getter.h"
#include "net/url_request/url_request_job_factory.h"
+namespace base {
class MessageLoop;
+}
namespace net {
class HostResolver;
@@ -30,8 +32,8 @@ class ShellURLRequestContextGetter : public net::URLRequestContextGetter {
ShellURLRequestContextGetter(
bool ignore_certificate_errors,
const base::FilePath& base_path,
- MessageLoop* io_loop,
- MessageLoop* file_loop,
+ base::MessageLoop* io_loop,
+ base::MessageLoop* file_loop,
ProtocolHandlerMap* protocol_handlers);
// net::URLRequestContextGetter implementation.
@@ -47,8 +49,8 @@ class ShellURLRequestContextGetter : public net::URLRequestContextGetter {
private:
bool ignore_certificate_errors_;
base::FilePath base_path_;
- MessageLoop* io_loop_;
- MessageLoop* file_loop_;
+ base::MessageLoop* io_loop_;
+ base::MessageLoop* file_loop_;
scoped_ptr<net::ProxyConfigService> proxy_config_service_;
scoped_ptr<net::NetworkDelegate> network_delegate_;
« no previous file with comments | « content/renderer/devtools/devtools_agent_filter.h ('k') | extensions/browser/file_reader.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698