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

Unified Diff: net/proxy/proxy_config_service_linux.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 | « net/proxy/mock_proxy_resolver.h ('k') | net/proxy/proxy_service.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/proxy/proxy_config_service_linux.h
diff --git a/net/proxy/proxy_config_service_linux.h b/net/proxy/proxy_config_service_linux.h
index 8d46d998c6396b6599a83779dc29f4b3d3914d4d..8bae4c818bfb6424ed13dc01b30ba862a34649c0 100644
--- a/net/proxy/proxy_config_service_linux.h
+++ b/net/proxy/proxy_config_service_linux.h
@@ -19,9 +19,8 @@
#include "net/proxy/proxy_config_service.h"
#include "net/proxy/proxy_server.h"
-class MessageLoopForIO;
-
namespace base {
+class MessageLoopForIO;
class SingleThreadTaskRunner;
} // namespace base
@@ -52,7 +51,7 @@ class NET_EXPORT_PRIVATE ProxyConfigServiceLinux : public ProxyConfigService {
// gconf/gsettings calls or reading necessary files, depending on the
// implementation.
virtual bool Init(base::SingleThreadTaskRunner* glib_thread_task_runner,
- MessageLoopForIO* file_loop) = 0;
+ base::MessageLoopForIO* file_loop) = 0;
// Releases the gconf/gsettings client, which clears cached directories and
// stops notifications.
@@ -183,7 +182,7 @@ class NET_EXPORT_PRIVATE ProxyConfigServiceLinux : public ProxyConfigService {
void SetUpAndFetchInitialConfig(
base::SingleThreadTaskRunner* glib_thread_task_runner,
base::SingleThreadTaskRunner* io_thread_task_runner,
- MessageLoopForIO* file_loop);
+ base::MessageLoopForIO* file_loop);
// Handler for setting change notifications: fetches a new proxy
// configuration from settings, and if this config is different
@@ -283,7 +282,7 @@ class NET_EXPORT_PRIVATE ProxyConfigServiceLinux : public ProxyConfigService {
void SetupAndFetchInitialConfig(
base::SingleThreadTaskRunner* glib_thread_task_runner,
base::SingleThreadTaskRunner* io_thread_task_runner,
- MessageLoopForIO* file_loop) {
+ base::MessageLoopForIO* file_loop) {
delegate_->SetUpAndFetchInitialConfig(glib_thread_task_runner,
io_thread_task_runner, file_loop);
}
« no previous file with comments | « net/proxy/mock_proxy_resolver.h ('k') | net/proxy/proxy_service.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698