| OLD | NEW |
| 1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
| 2 <!-- | 2 <!-- |
| 3 Copyright (c) 2012 The Chromium Authors. All rights reserved. | 3 Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 4 Use of this source code is governed by a BSD-style license that can be | 4 Use of this source code is governed by a BSD-style license that can be |
| 5 found in the LICENSE file. | 5 found in the LICENSE file. |
| 6 --> | 6 --> |
| 7 | 7 |
| 8 <link rel="import" href="/tracing/base/event.html"> | 8 <link rel="import" href="/tracing/base/event.html"> |
| 9 <link rel="import" href="/tracing/base/iteration_helpers.html"> | |
| 10 <link rel="import" href="/tracing/base/settings.html"> | 9 <link rel="import" href="/tracing/base/settings.html"> |
| 11 <link rel="import" href="/tracing/base/task.html"> | 10 <link rel="import" href="/tracing/base/task.html"> |
| 12 <link rel="import" href="/tracing/base/unit.html"> | 11 <link rel="import" href="/tracing/base/unit.html"> |
| 12 <link rel="import" href="/tracing/base/utils.html"> |
| 13 <link rel="import" href="/tracing/core/filter.html"> | 13 <link rel="import" href="/tracing/core/filter.html"> |
| 14 <link rel="import" href="/tracing/model/event.html"> | 14 <link rel="import" href="/tracing/model/event.html"> |
| 15 <link rel="import" href="/tracing/model/event_set.html"> | 15 <link rel="import" href="/tracing/model/event_set.html"> |
| 16 <link rel="import" href="/tracing/model/x_marker_annotation.html"> | 16 <link rel="import" href="/tracing/model/x_marker_annotation.html"> |
| 17 <link rel="import" href="/tracing/ui/base/hotkey_controller.html"> | 17 <link rel="import" href="/tracing/ui/base/hotkey_controller.html"> |
| 18 <link rel="import" href="/tracing/ui/base/mouse_mode_selector.html"> | 18 <link rel="import" href="/tracing/ui/base/mouse_mode_selector.html"> |
| 19 <link rel="import" href="/tracing/ui/base/timing_tool.html"> | 19 <link rel="import" href="/tracing/ui/base/timing_tool.html"> |
| 20 <link rel="import" href="/tracing/ui/base/ui.html"> | 20 <link rel="import" href="/tracing/ui/base/ui.html"> |
| 21 <link rel="import" href="/tracing/ui/timeline_display_transform_animations.html"
> | 21 <link rel="import" href="/tracing/ui/timeline_display_transform_animations.html"
> |
| 22 <link rel="import" href="/tracing/ui/timeline_viewport.html"> | 22 <link rel="import" href="/tracing/ui/timeline_viewport.html"> |
| (...skipping 1140 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1163 Polymer.dom(this.$.hint_text).textContent = text; | 1163 Polymer.dom(this.$.hint_text).textContent = text; |
| 1164 this.$.hint_text.style.display = ''; | 1164 this.$.hint_text.style.display = ''; |
| 1165 }, | 1165 }, |
| 1166 | 1166 |
| 1167 hideHintText_() { | 1167 hideHintText_() { |
| 1168 this.pendingHintTextClearTimeout_ = undefined; | 1168 this.pendingHintTextClearTimeout_ = undefined; |
| 1169 this.$.hint_text.style.display = 'none'; | 1169 this.$.hint_text.style.display = 'none'; |
| 1170 } | 1170 } |
| 1171 }); | 1171 }); |
| 1172 </script> | 1172 </script> |
| OLD | NEW |