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

Side by Side Diff: tracing/tracing/model/stack_frame.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) 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 <link rel="import" href="/tracing/base/base.html"> 7 <link rel="import" href="/tracing/base/base.html">
8 <script> 8 <script>
9 'use strict'; 9 'use strict';
10 10
(...skipping 79 matching lines...) Expand 10 before | Expand all | Expand 10 after
90 } 90 }
91 return stack; 91 return stack;
92 }, 92 },
93 93
94 getUserFriendlyStackTrace: function() { 94 getUserFriendlyStackTrace: function() {
95 return this.stackTrace.map(function(x) { return x.title; }); 95 return this.stackTrace.map(function(x) { return x.title; });
96 } 96 }
97 }; 97 };
98 98
99 return { 99 return {
100 StackFrame: StackFrame 100 StackFrame,
101 }; 101 };
102 }); 102 });
103 </script> 103 </script>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698