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

Side by Side Diff: tracing/tracing/ui/base/overlay.html

Issue 2526613002: Return short-hand object literals to exportTo. (Closed)
Patch Set: . Created 4 years 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
OLDNEW
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
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>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698