| OLD | NEW |
| 1 // Copyright (c) 2010 The Chromium OS Authors. All rights reserved. | 1 // Copyright (c) 2010 The Chromium OS 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 // List of tasks to accomplish | 5 // List of tasks to accomplish |
| 6 var URLS = new Array(); | 6 var URLS = new Array(); |
| 7 | 7 |
| 8 var ViewGDoc = ('http://docs.google.com/RawDocContents?action=fetch&' + | 8 var ViewGDoc = ('http://docs.google.com/RawDocContents?action=fetch&' + |
| 9 'justBody=false&revision=_latest&editMode=true&docID='); | 9 'justBody=false&revision=_latest&editMode=true&docID='); |
| 10 | 10 |
| (...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 78 ], | 78 ], |
| 79 }, | 79 }, |
| 80 { | 80 { |
| 81 // After 54 minutes, watch Google IO for 6 minutes | 81 // After 54 minutes, watch Google IO for 6 minutes |
| 82 type: 'window', | 82 type: 'window', |
| 83 name: 'video', | 83 name: 'video', |
| 84 start: 54 * 60 * 1000, | 84 start: 54 * 60 * 1000, |
| 85 duration: 6 * 60 * 1000, | 85 duration: 6 * 60 * 1000, |
| 86 focus: true, | 86 focus: true, |
| 87 tabs: [ | 87 tabs: [ |
| 88 'http://www.youtube.com/watch_popup?v=ecI_hCBGEIM' | 88 'http://www.youtube.com/v/ecI_hCBGEIM&autoplay=1' |
| 89 ] | 89 ] |
| 90 }, | 90 }, |
| 91 ]; | 91 ]; |
| 92 | 92 |
| 93 | 93 |
| 94 // List of URLs to cycle through | 94 // List of URLs to cycle through |
| 95 var u_index = 0; | 95 var u_index = 0; |
| 96 URLS[u_index++] = 'http://www.google.com'; | 96 URLS[u_index++] = 'http://www.google.com'; |
| 97 URLS[u_index++] = 'http://www.yahoo.com'; | 97 URLS[u_index++] = 'http://www.yahoo.com'; |
| 98 URLS[u_index++] = 'http://www.facebook.com'; | 98 URLS[u_index++] = 'http://www.facebook.com'; |
| (...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 140 URLS[u_index++] = 'http://www.netflix.com'; | 140 URLS[u_index++] = 'http://www.netflix.com'; |
| 141 URLS[u_index++] = 'http://www.fastclick.net'; | 141 URLS[u_index++] = 'http://www.fastclick.net'; |
| 142 URLS[u_index++] = 'http://www.windows.com'; | 142 URLS[u_index++] = 'http://www.windows.com'; |
| 143 URLS[u_index++] = 'http://www.questionmarket.com'; | 143 URLS[u_index++] = 'http://www.questionmarket.com'; |
| 144 URLS[u_index++] = 'http://www.nytimes.com'; | 144 URLS[u_index++] = 'http://www.nytimes.com'; |
| 145 URLS[u_index++] = 'http://www.toysrus.com'; | 145 URLS[u_index++] = 'http://www.toysrus.com'; |
| 146 URLS[u_index++] = 'http://www.allrecipes.com'; | 146 URLS[u_index++] = 'http://www.allrecipes.com'; |
| 147 URLS[u_index++] = 'http://www.overstock.com'; | 147 URLS[u_index++] = 'http://www.overstock.com'; |
| 148 URLS[u_index++] = 'http://www.comcast.net'; | 148 URLS[u_index++] = 'http://www.comcast.net'; |
| 149 | 149 |
| OLD | NEW |