Index: content/browser/resolve_proxy_msg_helper.h |
diff --git a/content/browser/resolve_proxy_msg_helper.h b/content/browser/resolve_proxy_msg_helper.h |
index ebdbdaa5af2c08f3c975f81328ec09fcb219f5bd..8dd45ebef5290271f1d40433dfba92dc1a946bfb 100644 |
--- a/content/browser/resolve_proxy_msg_helper.h |
+++ b/content/browser/resolve_proxy_msg_helper.h |
@@ -19,6 +19,8 @@ namespace net { |
class URLRequestContextGetter; |
} |
+namespace content { |
+ |
// Responds to ChildProcessHostMsg_ResolveProxy, kicking off a ProxyResolve |
// request on the IO thread using the specified proxy service. Completion is |
// notified through the delegate. If multiple requests are started at the same |
@@ -29,14 +31,13 @@ class URLRequestContextGetter; |
// the stored IPC::Message pointers for pending requests. |
// |
// This object is expected to live on the IO thread. |
-class CONTENT_EXPORT ResolveProxyMsgHelper |
- : public content::BrowserMessageFilter { |
+class CONTENT_EXPORT ResolveProxyMsgHelper : public BrowserMessageFilter { |
public: |
explicit ResolveProxyMsgHelper(net::URLRequestContextGetter* getter); |
// Constructor used by unittests. |
explicit ResolveProxyMsgHelper(net::ProxyService* proxy_service); |
- // content::BrowserMessageFilter implementation |
+ // BrowserMessageFilter implementation |
virtual bool OnMessageReceived(const IPC::Message& message, |
bool* message_was_ok) OVERRIDE; |
@@ -81,4 +82,6 @@ class CONTENT_EXPORT ResolveProxyMsgHelper |
net::ProxyService* proxy_service_; |
}; |
+} // namespace content |
+ |
#endif // CONTENT_BROWSER_RESOLVE_PROXY_MSG_HELPER_H_ |