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_; } |