summaryrefslogtreecommitdiffstats
path: root/chromium/chrome/browser/resources/backloader/web/cros_validator.js
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/chrome/browser/resources/backloader/web/cros_validator.js')
-rw-r--r--chromium/chrome/browser/resources/backloader/web/cros_validator.js48
1 files changed, 0 insertions, 48 deletions
diff --git a/chromium/chrome/browser/resources/backloader/web/cros_validator.js b/chromium/chrome/browser/resources/backloader/web/cros_validator.js
deleted file mode 100644
index b849fcfe8a6..00000000000
--- a/chromium/chrome/browser/resources/backloader/web/cros_validator.js
+++ /dev/null
@@ -1,48 +0,0 @@
-// Copyright (c) 2012 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-function ChromeOSValidator() {
-}
-
-ChromeOSValidator.getInstance = function() {
- if (!ChromeOSValidator.instance_) {
- ChromeOSValidator.instance_ = new ChromeOSValidator();
- }
- return ChromeOSValidator.instance_;
-};
-
-ChromeOSValidator.prototype = {
- LOADER_ORIGIN: 'chrome-extension://nbicjcbcmclhihdkigkjgkgafckdfcom',
- LOADER_PAGE: '/background.html',
- callback_: undefined,
-
- validate: function(callback) {
- this.callback_ = callback;
- var msg = { method: 'validate' };
- window.parent.postMessage(msg,
- this.LOADER_ORIGIN + this.LOADER_PAGE);
- },
-
- initialize: function() {
- window.addEventListener('message', this.onMessage.bind(this), false);
- },
-
- isValidMessage_: function(msg) {
- return msg.origin == this.LOADER_ORIGIN;
- },
-
- onMessage: function(e) {
- var msg = e.data;
- if (msg.method == 'validationResults' && this.isValidMessage_(e)) {
- if (this.callback_)
- this.callback_(msg.os == 'ChromeOS');
- } else {
- console.log('#### ChromeOSValidator.onMessage: unknown message');
- if (this.callback_)
- this.callback_(false);
- }
- }
-};
-
-ChromeOSValidator.getInstance().initialize();