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

Side by Side Diff: tools/telemetry/telemetry/page/scrolling_action.js

Issue 12278015: [Telemetry] Reorganize everything. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Re-add shebangs. Created 7 years, 10 months 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 | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 // This file provides the ScrollingAction object, which scrolls a page 5 // This file provides the ScrollingAction object, which scrolls a page
6 // from top to bottom: 6 // from top to bottom:
7 // 1. var action = new __ScrollingAction(callback) 7 // 1. var action = new __ScrollingAction(callback)
8 // 2. action.start(element_to_scroll) 8 // 2. action.start(element_to_scroll)
9 'use strict'; 9 'use strict';
10 10
(...skipping 141 matching lines...) Expand 10 before | Expand all | Expand 10 after
152 this.endMeasuringHook(); 152 this.endMeasuringHook();
153 153
154 // We're done. 154 // We're done.
155 if (this.callback_) 155 if (this.callback_)
156 this.callback_(); 156 this.callback_();
157 }; 157 };
158 158
159 window.__ScrollingAction = ScrollingAction; 159 window.__ScrollingAction = ScrollingAction;
160 window.__ScrollingAction_GetBoundingVisibleRect = getBoundingVisibleRect; 160 window.__ScrollingAction_GetBoundingVisibleRect = getBoundingVisibleRect;
161 })(); 161 })();
OLDNEW
« no previous file with comments | « tools/telemetry/telemetry/page/record_wpr.py ('k') | tools/telemetry/telemetry/page/scrolling_action.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698