OLD | NEW |
| (Empty) |
1 /* | |
2 * Copyright (c) 2011 The Native Client Authors. All rights reserved. | |
3 * Use of this source code is governed by a BSD-style license that can be | |
4 * found in the LICENSE file. | |
5 */ | |
6 | |
7 /** | |
8 * @fileoverview This file provides 2 variables that can be used | |
9 * with the BrowserChecker Javascript class. This file can be read | |
10 * in by examples.ezt/examples.html from code.google.com/chrome/nativeclient. | |
11 * Users can create a BrowserChecker object using | |
12 * |supported_versions.MIN_GALLERY_CHROME_VERSION|. | |
13 * This allows updating the versions directly on app-engine w/o changing | |
14 * examples.ezt in perforce. | |
15 */ | |
16 | |
17 // Create a namespace object | |
18 var supported_versions = supported_versions || {}; | |
19 // Add the min value to the namespace | |
20 supported_versions.MIN_GALLERY_CHROME_VERSION = 14; | |
OLD | NEW |