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

Side by Side Diff: Source/devtools/front_end/timeline/TimelineFlameChart.js

Issue 305963006: Clear selected flame chart entry when overview window is being dragged (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 6 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2014 Google Inc. All rights reserved. 2 * Copyright (C) 2014 Google Inc. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions are 5 * modification, are permitted provided that the following conditions are
6 * met: 6 * met:
7 * 7 *
8 * * Redistributions of source code must retain the above copyright 8 * * Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 9 * notice, this list of conditions and the following disclaimer.
10 * * Redistributions in binary form must reproduce the above 10 * * Redistributions in binary form must reproduce the above
(...skipping 902 matching lines...) Expand 10 before | Expand all | Expand 10 after
913 this._mainView._scheduleUpdate(); 913 this._mainView._scheduleUpdate();
914 }, 914 },
915 915
916 /** 916 /**
917 * @param {number} startTime 917 * @param {number} startTime
918 * @param {number} endTime 918 * @param {number} endTime
919 */ 919 */
920 setWindowTimes: function(startTime, endTime) 920 setWindowTimes: function(startTime, endTime)
921 { 921 {
922 this._mainView.setWindowTimes(startTime, endTime); 922 this._mainView.setWindowTimes(startTime, endTime);
923 this._delegate.select(null);
923 }, 924 },
924 925
925 /** 926 /**
926 * @param {number} width 927 * @param {number} width
927 */ 928 */
928 setSidebarSize: function(width) 929 setSidebarSize: function(width)
929 { 930 {
930 }, 931 },
931 932
932 /** 933 /**
(...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after
982 * @param {number} entryIndex 983 * @param {number} entryIndex
983 * @return {?WebInspector.TimelineSelection} 984 * @return {?WebInspector.TimelineSelection}
984 */ 985 */
985 createSelection: function(entryIndex) { }, 986 createSelection: function(entryIndex) { },
986 /** 987 /**
987 * @param {?WebInspector.TimelineSelection} selection 988 * @param {?WebInspector.TimelineSelection} selection
988 * @return {number} 989 * @return {number}
989 */ 990 */
990 entryIndexForSelection: function(selection) { } 991 entryIndexForSelection: function(selection) { }
991 } 992 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698