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

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

Issue 1865213004: Convert //chrome/browser/ui from scoped_ptr to std::unique_ptr (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 4 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 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
11 // this, enable the following flag to read the webapp's source files 11 // this, enable the following flag to read the webapp's source files
12 // directly off disk, so all you have to do is refresh the page to 12 // directly off disk, so all you have to do is refresh the page to
13 // test the modifications. 13 // test the modifications.
14 // #define USE_SOURCE_FILES_DIRECTLY 14 // #define USE_SOURCE_FILES_DIRECTLY
15 15
16 #include "base/bind.h" 16 #include "base/bind.h"
17 #include "base/macros.h" 17 #include "base/macros.h"
18 #include "base/memory/scoped_ptr.h"
19 #include "base/strings/string_util.h" 18 #include "base/strings/string_util.h"
20 #include "base/tracked_objects.h" 19 #include "base/tracked_objects.h"
21 #include "base/values.h" 20 #include "base/values.h"
22 #include "chrome/browser/profiles/profile.h" 21 #include "chrome/browser/profiles/profile.h"
23 #include "chrome/browser/task_profiler/task_profiler_data_serializer.h" 22 #include "chrome/browser/task_profiler/task_profiler_data_serializer.h"
24 #include "chrome/common/url_constants.h" 23 #include "chrome/common/url_constants.h"
25 #include "components/metrics/profiler/tracking_synchronizer.h" 24 #include "components/metrics/profiler/tracking_synchronizer.h"
26 #include "content/public/browser/browser_thread.h" 25 #include "content/public/browser/browser_thread.h"
27 #include "content/public/browser/url_data_source.h" 26 #include "content/public/browser/url_data_source.h"
28 #include "content/public/browser/web_contents.h" 27 #include "content/public/browser/web_contents.h"
(...skipping 140 matching lines...) Expand 10 before | Expand all | Expand 10 after
169 const metrics::ProfilerEvents& past_events) { 168 const metrics::ProfilerEvents& past_events) {
170 // Serialize the data to JSON. 169 // Serialize the data to JSON.
171 base::DictionaryValue json_data; 170 base::DictionaryValue json_data;
172 task_profiler::TaskProfilerDataSerializer::ToValue( 171 task_profiler::TaskProfilerDataSerializer::ToValue(
173 process_data_phase, attributes.process_id, attributes.process_type, 172 process_data_phase, attributes.process_id, attributes.process_type,
174 &json_data); 173 &json_data);
175 174
176 // Send the data to the renderer. 175 // Send the data to the renderer.
177 web_ui()->CallJavascriptFunction("g_browserBridge.receivedData", json_data); 176 web_ui()->CallJavascriptFunction("g_browserBridge.receivedData", json_data);
178 } 177 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698