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

Unified Diff: chrome/browser/search/contextual_search_promo_source_android.h

Issue 885283009: Update {virtual,override,final} to follow C++11 style. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 11 months 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
« no previous file with comments | « chrome/browser/profiles/profile_android.h ('k') | chrome/browser/search/search_android_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/search/contextual_search_promo_source_android.h
diff --git a/chrome/browser/search/contextual_search_promo_source_android.h b/chrome/browser/search/contextual_search_promo_source_android.h
index 1a2319f68bc924b0abd2a969e68075e774b4e97e..4ed5bbbf9bae80c2996ffdda055e75d0fcca7519 100644
--- a/chrome/browser/search/contextual_search_promo_source_android.h
+++ b/chrome/browser/search/contextual_search_promo_source_android.h
@@ -13,20 +13,19 @@
class ContextualSearchPromoSourceAndroid : public content::URLDataSource {
public:
ContextualSearchPromoSourceAndroid();
- virtual ~ContextualSearchPromoSourceAndroid();
+ ~ContextualSearchPromoSourceAndroid() override;
protected:
// Overridden from content::URLDataSource:
- virtual void StartDataRequest(
+ void StartDataRequest(
const std::string& path_and_query,
int render_process_id,
int render_frame_id,
const content::URLDataSource::GotDataCallback& callback) override;
- virtual std::string GetSource() const override;
- virtual std::string GetMimeType(
- const std::string& path_and_query) const override;
- virtual bool ShouldDenyXFrameOptions() const override;
- virtual bool ShouldAddContentSecurityPolicy() const override;
+ std::string GetSource() const override;
+ std::string GetMimeType(const std::string& path_and_query) const override;
+ bool ShouldDenyXFrameOptions() const override;
+ bool ShouldAddContentSecurityPolicy() const override;
// Sends unmodified resource bytes.
void SendResource(
« no previous file with comments | « chrome/browser/profiles/profile_android.h ('k') | chrome/browser/search/search_android_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698