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

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

Issue 629463003: replace OVERRIDE and FINAL with override and final in chrome/browser/ui/[w-z]* (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 2 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 3e39517e9e073f0bbb48598abf61e866fddcb93a..11397f318d967e05447d38ceb727cefe29fcf3be 100644
--- a/chrome/browser/ui/webui/profiler_ui.cc
+++ b/chrome/browser/ui/webui/profiler_ui.cc
@@ -53,11 +53,11 @@ class ProfilerWebUIDataSource : public content::URLDataSource {
protected:
// content::URLDataSource implementation.
- virtual std::string GetSource() OVERRIDE {
+ virtual std::string GetSource() override {
return chrome::kChromeUIProfilerHost;
}
- virtual std::string GetMimeType(const std::string& path) const OVERRIDE {
+ virtual std::string GetMimeType(const std::string& path) const override {
if (EndsWith(path, ".js", false))
return "application/javascript";
return "text/html";
@@ -66,7 +66,7 @@ class ProfilerWebUIDataSource : public content::URLDataSource {
virtual void StartDataRequest(
const std::string& path,
bool is_incognito,
- const content::URLDataSource::GotDataCallback& callback) OVERRIDE {
+ const content::URLDataSource::GotDataCallback& callback) override {
base::FilePath base_path;
PathService::Get(base::DIR_SOURCE_ROOT, &base_path);
base_path = base_path.AppendASCII("chrome");
@@ -117,7 +117,7 @@ class ProfilerMessageHandler : public WebUIMessageHandler {
ProfilerMessageHandler() {}
// WebUIMessageHandler implementation.
- virtual void RegisterMessages() OVERRIDE;
+ virtual void RegisterMessages() override;
// Messages.
void OnGetData(const base::ListValue* list);
« no previous file with comments | « chrome/browser/ui/webui/profiler_ui.h ('k') | chrome/browser/ui/webui/quota_internals/quota_internals_handler.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698