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

Side by Side Diff: chrome/browser/ui/webui/profiler_ui.cc

Issue 671653002: Standardize usage of virtual/override/final in chrome/browser/ui/ (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 unified diff | Download patch
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "chrome/browser/ui/webui/profiler_ui.h" 5 #include "chrome/browser/ui/webui/profiler_ui.h"
6 6
7 #include <string> 7 #include <string>
8 8
9 // When testing the javacript code, it is cumbersome to have to keep 9 // When testing the javacript code, it is cumbersome to have to keep
10 // re-building the resouces package and reloading the browser. To solve 10 // re-building the resouces package and reloading the browser. To solve
(...skipping 99 matching lines...) Expand 10 before | Expand all | Expand 10 after
110 #endif 110 #endif
111 111
112 // This class receives javascript messages from the renderer. 112 // This class receives javascript messages from the renderer.
113 // Note that the WebUI infrastructure runs on the UI thread, therefore all of 113 // Note that the WebUI infrastructure runs on the UI thread, therefore all of
114 // this class's methods are expected to run on the UI thread. 114 // this class's methods are expected to run on the UI thread.
115 class ProfilerMessageHandler : public WebUIMessageHandler { 115 class ProfilerMessageHandler : public WebUIMessageHandler {
116 public: 116 public:
117 ProfilerMessageHandler() {} 117 ProfilerMessageHandler() {}
118 118
119 // WebUIMessageHandler implementation. 119 // WebUIMessageHandler implementation.
120 virtual void RegisterMessages() override; 120 void RegisterMessages() override;
121 121
122 // Messages. 122 // Messages.
123 void OnGetData(const base::ListValue* list); 123 void OnGetData(const base::ListValue* list);
124 void OnResetData(const base::ListValue* list); 124 void OnResetData(const base::ListValue* list);
125 125
126 private: 126 private:
127 DISALLOW_COPY_AND_ASSIGN(ProfilerMessageHandler); 127 DISALLOW_COPY_AND_ASSIGN(ProfilerMessageHandler);
128 }; 128 };
129 129
130 void ProfilerMessageHandler::RegisterMessages() { 130 void ProfilerMessageHandler::RegisterMessages() {
(...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after
175 int process_type) { 175 int process_type) {
176 // Serialize the data to JSON. 176 // Serialize the data to JSON.
177 base::DictionaryValue json_data; 177 base::DictionaryValue json_data;
178 task_profiler::TaskProfilerDataSerializer::ToValue(profiler_data, 178 task_profiler::TaskProfilerDataSerializer::ToValue(profiler_data,
179 process_type, 179 process_type,
180 &json_data); 180 &json_data);
181 181
182 // Send the data to the renderer. 182 // Send the data to the renderer.
183 web_ui()->CallJavascriptFunction("g_browserBridge.receivedData", json_data); 183 web_ui()->CallJavascriptFunction("g_browserBridge.receivedData", json_data);
184 } 184 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698