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

Side by Side Diff: tracing/tracing/model/helpers/android_app.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) 2015 The Chromium Authors. All rights reserved. 3 Copyright (c) 2015 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 <link rel="import" href="/tracing/base/range_utils.html"> 7 <link rel="import" href="/tracing/base/range_utils.html">
8 <link rel="import" href="/tracing/base/sorted_array_utils.html"> 8 <link rel="import" href="/tracing/base/sorted_array_utils.html">
9 <link rel="import" href="/tracing/base/statistics.html"> 9 <link rel="import" href="/tracing/base/statistics.html">
10 <link rel="import" href="/tracing/model/frame.html"> 10 <link rel="import" href="/tracing/model/frame.html">
(...skipping 317 matching lines...) Expand 10 before | Expand all | Expand 10 after
328 328
329 getAnimationAsyncSlices: function() { 329 getAnimationAsyncSlices: function() {
330 if (!this.animations_) { 330 if (!this.animations_) {
331 this.animations_ = getAnimationAsyncSlices(this.uiThread); 331 this.animations_ = getAnimationAsyncSlices(this.uiThread);
332 } 332 }
333 return this.animations_; 333 return this.animations_;
334 } 334 }
335 }; 335 };
336 336
337 return { 337 return {
338 AndroidApp: AndroidApp 338 AndroidApp,
339 }; 339 };
340 }); 340 });
341 </script> 341 </script>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698