OLD | NEW |
1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
2 <!-- | 2 <!-- |
3 Copyright (c) 2014 The Chromium Authors. All rights reserved. | 3 Copyright (c) 2014 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/utils.html"> | 9 <link rel="import" href="/tracing/base/utils.html"> |
10 <link rel="import" href="/tracing/ui/base/ui.html"> | 10 <link rel="import" href="/tracing/ui/base/ui.html"> |
(...skipping 324 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
335 Polymer.dom(b).textContent = 'OK'; | 335 Polymer.dom(b).textContent = 'OK'; |
336 b.addEventListener('click', function() { | 336 b.addEventListener('click', function() { |
337 o.visible = false; | 337 o.visible = false; |
338 }); | 338 }); |
339 Polymer.dom(o.buttons).appendChild(b); | 339 Polymer.dom(o.buttons).appendChild(b); |
340 o.visible = true; | 340 o.visible = true; |
341 return o; | 341 return o; |
342 }; | 342 }; |
343 | 343 |
344 return { | 344 return { |
345 Overlay: Overlay | 345 Overlay, |
346 }; | 346 }; |
347 }); | 347 }); |
348 </script> | 348 </script> |
OLD | NEW |