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

Unified Diff: chrome/browser/chromeos/gview_request_interceptor.h

Issue 8638016: Add OVERRIDE to chrome/browser/chromeos/. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years, 1 month 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
Index: chrome/browser/chromeos/gview_request_interceptor.h
diff --git a/chrome/browser/chromeos/gview_request_interceptor.h b/chrome/browser/chromeos/gview_request_interceptor.h
index a4e197731666db66ea3956b60d774ffe8d6e6445..3d537de0a6b3e518e976f21b5084ecd0478ce5c7 100644
--- a/chrome/browser/chromeos/gview_request_interceptor.h
+++ b/chrome/browser/chromeos/gview_request_interceptor.h
@@ -7,6 +7,7 @@
#pragma once
#include <string>
+#include "base/compiler_specific.h"
#include "base/hash_tables.h"
#include "net/url_request/url_request_job_factory.h"
@@ -25,18 +26,19 @@ class GViewRequestInterceptor : public net::URLRequestJobFactory::Interceptor {
// Always returns NULL because we don't want to attempt a redirect
// before seeing the detected mime type of the request.
- virtual net::URLRequestJob* MaybeIntercept(net::URLRequest* request) const;
+ virtual net::URLRequestJob* MaybeIntercept(
+ net::URLRequest* request) const OVERRIDE;
// Always returns NULL.
virtual net::URLRequestJob* MaybeInterceptRedirect(
const GURL& location,
- net::URLRequest* request) const;
+ net::URLRequest* request) const OVERRIDE;
// Determines if the requested document can be viewed by the Google
// Document Viewer. If it can, returns a net::URLRequestJob that
// redirects the browser to the view URL.
virtual net::URLRequestJob* MaybeInterceptResponse(
- net::URLRequest* request) const;
+ net::URLRequest* request) const OVERRIDE;
private:
bool ShouldUsePdfPlugin(net::URLRequest* request) const;

Powered by Google App Engine
This is Rietveld 408576698