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

Side by Side Diff: webkit/glue/devtools/js/inspector_controller_impl.js

Issue 115299: Add initial version of DevTools Profiler (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 11 years, 7 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 | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2009 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 /** 5 /**
6 * @fileoverview DevTools' implementation of the InspectorController API. 6 * @fileoverview DevTools' implementation of the InspectorController API.
7 */ 7 */
8 goog.require('devtools.InspectorController'); 8 goog.require('devtools.InspectorController');
9 9
10 goog.provide('devtools.InspectorControllerImpl'); 10 goog.provide('devtools.InspectorControllerImpl');
(...skipping 127 matching lines...) Expand 10 before | Expand all | Expand 10 after
138 138
139 /** 139 /**
140 * @override 140 * @override
141 */ 141 */
142 devtools.InspectorControllerImpl.prototype.setPauseOnExceptions = function( 142 devtools.InspectorControllerImpl.prototype.setPauseOnExceptions = function(
143 value) { 143 value) {
144 return devtools.tools.getDebuggerAgent().setPauseOnExceptions(value); 144 return devtools.tools.getDebuggerAgent().setPauseOnExceptions(value);
145 }; 145 };
146 146
147 147
148 /**
149 * @override
150 */
151 devtools.InspectorControllerImpl.prototype.startProfiling = function() {
152 devtools.tools.getDebuggerAgent().startProfiling();
153 };
154
155
156 /**
157 * @override
158 */
159 devtools.InspectorControllerImpl.prototype.stopProfiling = function() {
160 devtools.tools.getDebuggerAgent().stopProfiling();
161 };
162
163
148 var InspectorController = new devtools.InspectorControllerImpl(); 164 var InspectorController = new devtools.InspectorControllerImpl();
OLDNEW
« no previous file with comments | « webkit/glue/devtools/js/devtools_host_stub.js ('k') | webkit/glue/devtools/js/profiler_processor.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698