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