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

Side by Side Diff: polymer_1.0.4/bower_components/google-chart/demo/country-data.json

Issue 1205703007: Add polymer 1.0 to npm_modules (Closed) Base URL: https://chromium.googlesource.com/infra/third_party/npm_modules.git@master
Patch Set: Renamed folder to 1.0.4 Created 5 years, 6 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
OLDNEW
(Empty)
1 {
2 "cols": [
3 {
4 "id": "ga:country",
5 "label": "Country",
6 "type": "string"
7 },
8 {
9 "id": "ga:sessions",
10 "label": "Sessions",
11 "type": "number"
12 }
13 ],
14 "rows": [
15 {
16 "c": [
17 {
18 "v": "United States"
19 },
20 {
21 "v": 24748
22 }
23 ]
24 },
25 {
26 "c": [
27 {
28 "v": "Canada"
29 },
30 {
31 "v": 15232
32 }
33 ]
34 },
35 {
36 "c": [
37 {
38 "v": "India"
39 },
40 {
41 "v": 9100
42 }
43 ]
44 },
45 {
46 "c": [
47 {
48 "v": "Japan"
49 },
50 {
51 "v": 4845
52 }
53 ]
54 },
55 {
56 "c": [
57 {
58 "v": "United Kingdom"
59 },
60 {
61 "v": 2768
62 }
63 ]
64 }
65 ]
66 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698