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

Unified Diff: chrome/browser/search_engines/search_terms_data.h

Issue 8614003: Add OVERRIDE to chrome/browser/. (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/search_engines/search_terms_data.h
diff --git a/chrome/browser/search_engines/search_terms_data.h b/chrome/browser/search_engines/search_terms_data.h
index ec108014efa3b6fdf016e76ac513460fd660c874..dd4468aa8c2e4011d21709d48616678ee59ce2e4 100644
--- a/chrome/browser/search_engines/search_terms_data.h
+++ b/chrome/browser/search_engines/search_terms_data.h
@@ -9,6 +9,7 @@
#include <string>
#include "base/basictypes.h"
+#include "base/compiler_specific.h"
#include "base/string16.h"
class Profile;
@@ -55,15 +56,15 @@ class UIThreadSearchTermsData : public SearchTermsData {
void set_profile(Profile* profile) { profile_ = profile; }
// Implementation of SearchTermsData.
- virtual std::string GoogleBaseURLValue() const;
- virtual std::string GetApplicationLocale() const;
+ virtual std::string GoogleBaseURLValue() const OVERRIDE;
+ virtual std::string GetApplicationLocale() const OVERRIDE;
#if defined(OS_WIN) && defined(GOOGLE_CHROME_BUILD)
- virtual string16 GetRlzParameterValue() const;
+ virtual string16 GetRlzParameterValue() const OVERRIDE;
#endif
// This returns the empty string unless set_profile() has been called with a
// non-NULL Profile.
- virtual std::string InstantFieldTrialUrlParam() const;
+ virtual std::string InstantFieldTrialUrlParam() const OVERRIDE;
// Used by tests to set the value for the Google base url. This takes
// ownership of the given std::string.

Powered by Google App Engine
This is Rietveld 408576698