| OLD | NEW |
| 1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
| 2 <!-- | 2 <!-- |
| 3 Copyright (c) 2013 The Chromium Authors. All rights reserved. | 3 Copyright (c) 2013 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"> | 9 <link rel="import" href="/tracing/base/utils.html"> |
| 10 <link rel="import" href="/tracing/ui/base/hotkey_controller.html"> | 10 <link rel="import" href="/tracing/ui/base/hotkey_controller.html"> |
| 11 <link rel="import" href="/tracing/ui/base/mouse_mode_icon.html"> | 11 <link rel="import" href="/tracing/ui/base/mouse_mode_icon.html"> |
| 12 <link rel="import" href="/tracing/ui/base/mouse_modes.html"> | 12 <link rel="import" href="/tracing/ui/base/mouse_modes.html"> |
| 13 <link rel="import" href="/tracing/ui/base/mouse_tracker.html"> | 13 <link rel="import" href="/tracing/ui/base/mouse_tracker.html"> |
| 14 <link rel="import" href="/tracing/ui/base/ui.html"> | 14 <link rel="import" href="/tracing/ui/base/ui.html"> |
| 15 <link rel="import" href="/tracing/ui/base/utils.html"> | 15 <link rel="import" href="/tracing/ui/base/utils.html"> |
| 16 | 16 |
| 17 <dom-module id='tr-ui-b-mouse-mode-selector'> | 17 <dom-module id='tr-ui-b-mouse-mode-selector'> |
| 18 <template> | 18 <template> |
| 19 <style> | 19 <style> |
| (...skipping 548 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 568 this.dispatchEvent(mouseEvent); | 568 this.dispatchEvent(mouseEvent); |
| 569 } | 569 } |
| 570 }); | 570 }); |
| 571 | 571 |
| 572 return { | 572 return { |
| 573 MIN_MOUSE_SELECTION_DISTANCE, | 573 MIN_MOUSE_SELECTION_DISTANCE, |
| 574 MODIFIER, | 574 MODIFIER, |
| 575 }; | 575 }; |
| 576 }); | 576 }); |
| 577 </script> | 577 </script> |
| OLD | NEW |