| Index: chrome/browser/custom_handlers/protocol_handler_registry_unittest.cc
|
| diff --git a/chrome/browser/custom_handlers/protocol_handler_registry_unittest.cc b/chrome/browser/custom_handlers/protocol_handler_registry_unittest.cc
|
| index d0c42284502c13f8da233591aa9d8a3314d75ef3..957096bdd35fa3b8cdfa17b31db323ff83682f8a 100644
|
| --- a/chrome/browser/custom_handlers/protocol_handler_registry_unittest.cc
|
| +++ b/chrome/browser/custom_handlers/protocol_handler_registry_unittest.cc
|
| @@ -118,7 +118,7 @@ class FakeProtocolClientWorker
|
| private:
|
| virtual ~FakeProtocolClientWorker() {}
|
|
|
| - virtual ShellIntegration::DefaultWebClientState CheckIsDefault() {
|
| + virtual ShellIntegration::DefaultWebClientState CheckIsDefault() OVERRIDE {
|
| if (force_failure_) {
|
| return ShellIntegration::NOT_DEFAULT_WEB_CLIENT;
|
| } else {
|
| @@ -126,7 +126,9 @@ class FakeProtocolClientWorker
|
| }
|
| }
|
|
|
| - virtual void SetAsDefault(bool interactive_permitted) {}
|
| + virtual bool SetAsDefault(bool interactive_permitted) OVERRIDE {
|
| + return true;
|
| + }
|
|
|
| private:
|
| bool force_failure_;
|
|
|