| OLD | NEW |
| 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 Loading... |
| 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 Loading... |
| 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 } |
| OLD | NEW |