| Index: chrome/browser/extensions/user_script_listener_unittest.cc
|
| ===================================================================
|
| --- chrome/browser/extensions/user_script_listener_unittest.cc (revision 181040)
|
| +++ chrome/browser/extensions/user_script_listener_unittest.cc (working copy)
|
| @@ -43,16 +43,16 @@
|
| }
|
|
|
| // ResourceController implementation:
|
| - virtual void Resume() {
|
| + virtual void Resume() OVERRIDE {
|
| request_->Start();
|
| }
|
| - virtual void Cancel() {
|
| + virtual void Cancel() OVERRIDE {
|
| NOTREACHED();
|
| }
|
| - virtual void CancelAndIgnore() {
|
| + virtual void CancelAndIgnore() OVERRIDE {
|
| NOTREACHED();
|
| }
|
| - virtual void CancelWithError(int error_code) {
|
| + virtual void CancelWithError(int error_code) OVERRIDE {
|
| NOTREACHED();
|
| }
|
|
|
| @@ -73,7 +73,7 @@
|
| kTestData,
|
| true) {}
|
| private:
|
| - ~SimpleTestJob() {}
|
| + virtual ~SimpleTestJob() {}
|
| };
|
|
|
| // Yoinked from extension_manifest_unittest.cc.
|
| @@ -130,7 +130,7 @@
|
| new SimpleTestJobProtocolHandler()));
|
| }
|
|
|
| - ~UserScriptListenerTest() {
|
| + virtual ~UserScriptListenerTest() {
|
| net::URLRequestFilter::GetInstance()->RemoveHostnameHandler("http",
|
| "google.com");
|
| net::URLRequestFilter::GetInstance()->RemoveHostnameHandler("http",
|
|
|