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

Side by Side Diff: Source/devtools/front_end/console/ConsoleView.js

Issue 1672443003: Fix devtools bugs Fix a spurious layout test failure (Closed) Base URL: svn://svn.chromium.org/blink/branches/dart/2454_1
Patch Set: Created 4 years, 10 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 /* 1 /*
2 * Copyright (C) 2007, 2008 Apple Inc. All rights reserved. 2 * Copyright (C) 2007, 2008 Apple Inc. All rights reserved.
3 * Copyright (C) 2009 Joseph Pecoraro 3 * Copyright (C) 2009 Joseph Pecoraro
4 * 4 *
5 * Redistribution and use in source and binary forms, with or without 5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions 6 * modification, are permitted provided that the following conditions
7 * are met: 7 * are met:
8 * 8 *
9 * 1. Redistributions of source code must retain the above copyright 9 * 1. Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer. 10 * notice, this list of conditions and the following disclaimer.
(...skipping 381 matching lines...) Expand 10 before | Expand all | Expand 10 after
392 { 392 {
393 var target = WebInspector.context.flavor(WebInspector.Target); 393 var target = WebInspector.context.flavor(WebInspector.Target);
394 var debuggerModel = WebInspector.DebuggerModel.fromTarget(target); 394 var debuggerModel = WebInspector.DebuggerModel.fromTarget(target);
395 395
396 debuggerModel.setEvaluateOnCallFrameMode(this._evaluateOnStackCheckBox.c hecked); 396 debuggerModel.setEvaluateOnCallFrameMode(this._evaluateOnStackCheckBox.c hecked);
397 this._updateExecutionContextSelectorState(); 397 this._updateExecutionContextSelectorState();
398 }, 398 },
399 399
400 _updateExecutionContextSelectorState: function() 400 _updateExecutionContextSelectorState: function()
401 { 401 {
402 this._executionContextSelector.setEnabled(!this._isPaused || !this._eval uateOnStackCheckBox.checked); 402 this._executionContextComboBox.setEnabled(!this._isPaused || !this._eval uateOnStackCheckBox.checked);
403 }, 403 },
404 // END DART SPECIFIC CODE 404 // END DART SPECIFIC CODE
405 405
406 _executionContextChanged: function() 406 _executionContextChanged: function()
407 { 407 {
408 this._prompt.clearAutoComplete(true); 408 this._prompt.clearAutoComplete(true);
409 if (!this._showAllMessagesCheckbox.checked()) 409 if (!this._showAllMessagesCheckbox.checked())
410 this._updateMessageList(); 410 this._updateMessageList();
411 }, 411 },
412 412
(...skipping 971 matching lines...) Expand 10 before | Expand all | Expand 10 after
1384 handleAction: function(context, actionId) 1384 handleAction: function(context, actionId)
1385 { 1385 {
1386 WebInspector.console.show(); 1386 WebInspector.console.show();
1387 } 1387 }
1388 } 1388 }
1389 1389
1390 /** 1390 /**
1391 * @typedef {{messageIndex: number, matchIndex: number}} 1391 * @typedef {{messageIndex: number, matchIndex: number}}
1392 */ 1392 */
1393 WebInspector.ConsoleView.RegexMatchRange; 1393 WebInspector.ConsoleView.RegexMatchRange;
OLDNEW
« no previous file with comments | « Source/core/inspector/InspectorDebuggerAgent.cpp ('k') | Source/devtools/front_end/sdk/RuntimeModel.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698