diff options
Diffstat (limited to 'chrome/browser/ui/webui/profiler_ui.cc')
-rw-r--r-- | chrome/browser/ui/webui/profiler_ui.cc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/chrome/browser/ui/webui/profiler_ui.cc b/chrome/browser/ui/webui/profiler_ui.cc index a16c05f..aff5b41 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 { |