Index: content/browser/resolve_proxy_msg_helper_unittest.cc |
=================================================================== |
--- content/browser/resolve_proxy_msg_helper_unittest.cc (revision 181789) |
+++ content/browser/resolve_proxy_msg_helper_unittest.cc (working copy) |
@@ -18,9 +18,10 @@ |
// This ProxyConfigService always returns "http://pac" as the PAC url to use. |
class MockProxyConfigService : public net::ProxyConfigService { |
public: |
- virtual void AddObserver(Observer* observer) {} |
- virtual void RemoveObserver(Observer* observer) {} |
- virtual ConfigAvailability GetLatestProxyConfig(net::ProxyConfig* results) { |
+ virtual void AddObserver(Observer* observer) OVERRIDE {} |
+ virtual void RemoveObserver(Observer* observer) OVERRIDE {} |
+ virtual ConfigAvailability GetLatestProxyConfig( |
+ net::ProxyConfig* results) OVERRIDE { |
*results = net::ProxyConfig::CreateFromCustomPacURL(GURL("http://pac")); |
return CONFIG_VALID; |
} |
@@ -69,7 +70,7 @@ |
scoped_ptr<PendingResult> pending_result_; |
private: |
- virtual bool OnMessageReceived(const IPC::Message& msg) { |
+ virtual bool OnMessageReceived(const IPC::Message& msg) OVERRIDE { |
TupleTypes<ViewHostMsg_ResolveProxy::ReplyParam>::ValueTuple reply_data; |
EXPECT_TRUE(ViewHostMsg_ResolveProxy::ReadReplyParam(&msg, &reply_data)); |
DCHECK(!pending_result_.get()); |