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

Side by Side Diff: runtime/observatory/lib/src/app/analytics.dart

Issue 1087393002: Add page view analytics to Observatory (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 5 years, 8 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
« no previous file with comments | « runtime/observatory/lib/app.dart ('k') | runtime/observatory/lib/src/app/application.dart » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 // Copyright (c) 2015, the Dart project authors. Please see the AUTHORS file
2 // for details. All rights reserved. Use of this source code is governed by a
3 // BSD-style license that can be found in the LICENSE file.
4
5 part of app;
6
7 class Analytics {
8 static final _UA = 'UA-26406144-17';
9 static final _name = 'Observatory';
10 static final _version = '1.11';
11 static final _googleAnalytics = new AnalyticsHtml(_UA, _name, _version);
12
13 static initialize() {
14 // We only send screen views. This is allowed without user permission.
15 // Note, before flipping this to be true we need a UI to allow users to
16 // control this.
17 _googleAnalytics.optIn = false;
18 }
19
20 /// Called whenever an Observatory page is viewed.
21 static Future reportPageView(Uri uri) {
22 // The screen name is the uri's path. e.g. inspect, profile.
23 final screenName = uri.path;
24 return _googleAnalytics.sendScreenView(screenName);
25 }
26 }
OLDNEW
« no previous file with comments | « runtime/observatory/lib/app.dart ('k') | runtime/observatory/lib/src/app/application.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698