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

Side by Side Diff: packages/usage/example/ga.dart

Issue 1400473008: Roll Observatory packages and add a roll script (Closed) Base URL: git@github.com:dart-lang/observatory_pub_packages.git@master
Patch Set: Created 5 years, 2 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
« no previous file with comments | « packages/usage/example/example.html ('k') | packages/usage/lib/src/usage_impl.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) 2014, 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 /**
6 * A simple command-line app to hand-test the usage library.
7 */
8 library usage_ga;
9
10 import 'package:usage/usage_io.dart';
11
12 void main(List args) {
13 final String DEFAULT_UA = 'UA-55029513-1';
14
15 if (args.isEmpty) {
16 print('usage: dart ga <GA tracking ID>');
17 print('pinging default UA value (${DEFAULT_UA})');
18 } else {
19 print('pinging ${args.first}');
20 }
21
22 String ua = args.isEmpty ? DEFAULT_UA : args.first;
23
24 Analytics ga = new AnalyticsIO(ua, 'ga_test', '1.0');
25 ga.optIn = true;
26
27 ga.sendScreenView('home').then((_) {
28 return ga.sendScreenView('files');
29 }).then((_) {
30 return ga.sendException('foo exception, line 123:56');
31 }).then((_) {
32 return ga.sendTiming('writeDuration', 123);
33 }).then((_) {
34 return ga.sendEvent('create', 'consoleapp', label: 'Console App');
35 }).then((_) {
36 print('pinged ${ua}');
37 });
38 }
OLDNEW
« no previous file with comments | « packages/usage/example/example.html ('k') | packages/usage/lib/src/usage_impl.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698