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

Unified Diff: chrome/browser/chromeos/login/issue_response_handler.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/login/issue_response_handler.h
diff --git a/chrome/browser/chromeos/login/issue_response_handler.h b/chrome/browser/chromeos/login/issue_response_handler.h
index 17e9db79457843864a59e0ec9205f25f2485615c..809194dedb62985ecf780ea41326d0a384950645 100644
--- a/chrome/browser/chromeos/login/issue_response_handler.h
+++ b/chrome/browser/chromeos/login/issue_response_handler.h
@@ -9,6 +9,7 @@
#include <string>
#include "base/basictypes.h"
+#include "base/compiler_specific.h"
#include "chrome/browser/chromeos/login/auth_response_handler.h"
namespace net {
@@ -29,15 +30,16 @@ class IssueResponseHandler : public AuthResponseHandler {
virtual ~IssueResponseHandler() {}
// Overridden from AuthResponseHandler.
- virtual bool CanHandle(const GURL& url);
+ virtual bool CanHandle(const GURL& url) OVERRIDE;
// Overridden from AuthResponseHandler.
// Takes in a response from IssueAuthToken, formats into an appropriate query
// to sent to TokenAuth, and issues said query. |catcher| will receive
// the response to the fetch. This fetch will follow redirects, which is
// necesary to support GAFYD and corp accounts.
- virtual content::URLFetcher* Handle(const std::string& to_process,
- content::URLFetcherDelegate* catcher);
+ virtual content::URLFetcher* Handle(
+ const std::string& to_process,
+ content::URLFetcherDelegate* catcher) OVERRIDE;
// exposed for testing
std::string token_url() { return token_url_; }

Powered by Google App Engine
This is Rietveld 408576698