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

Unified Diff: chrome/browser/ui/webui/profiler_ui.cc

Issue 1100223002: Update {virtual,override} to follow C++11 style in chrome. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase Created 5 years, 8 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
Index: chrome/browser/ui/webui/profiler_ui.cc
diff --git a/chrome/browser/ui/webui/profiler_ui.cc b/chrome/browser/ui/webui/profiler_ui.cc
index a16c05f1e08aa201d5978c023dc86a058a555592..aff5b41bca12c230159285db250936883cbd2be7 100644
--- a/chrome/browser/ui/webui/profiler_ui.cc
+++ b/chrome/browser/ui/webui/profiler_ui.cc
@@ -53,17 +53,17 @@ class ProfilerWebUIDataSource : public content::URLDataSource {
protected:
// content::URLDataSource implementation.
- virtual std::string GetSource() override {
+ std::string GetSource() override {
return chrome::kChromeUIProfilerHost;
}
- virtual std::string GetMimeType(const std::string& path) const override {
+ std::string GetMimeType(const std::string& path) const override {
if (EndsWith(path, ".js", false))
return "application/javascript";
return "text/html";
}
- virtual void StartDataRequest(
+ void StartDataRequest(
const std::string& path,
bool is_incognito,
const content::URLDataSource::GotDataCallback& callback) override {
« no previous file with comments | « chrome/browser/ui/webui/options/preferences_browsertest.h ('k') | chrome/browser/ui/webui/set_as_default_browser_ui.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698