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

Unified Diff: chrome_frame/cfinstall/src/miniclosure/base.js

Issue 126143005: Remove Chrome Frame code and resources. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: sync to r244038 Created 6 years, 11 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 side-by-side diff with in-line comments
Download patch
Index: chrome_frame/cfinstall/src/miniclosure/base.js
diff --git a/chrome_frame/cfinstall/src/miniclosure/base.js b/chrome_frame/cfinstall/src/miniclosure/base.js
deleted file mode 100644
index b64847d9d894e61fac62f6f807f3256d1610807e..0000000000000000000000000000000000000000
--- a/chrome_frame/cfinstall/src/miniclosure/base.js
+++ /dev/null
@@ -1,77 +0,0 @@
-// Copyright (c) 2011 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.
-
-/**
- * @fileoverview Implements a shim so that the CFInstall scripts can be compiled
- * with or without Closure. In particular, chromeframe.js is used by the stub,
- * the implementation, and the download site, so we need to provide an
- * implementation of goog.provide.
- **/
-
-var goog = {};
-goog.global = this;
-
-/**
- * From closure/base.js:goog.exportPath_ .
- * @param {string} name
- * @param {Object=} opt_object
- */
-goog.provide = function(name, opt_object) {
- var parts = name.split('.');
- var cur = goog.global;
-
- // Internet Explorer exhibits strange behavior when throwing errors from
- // methods externed in this manner. See the testExportSymbolExceptions in
- // base_test.html for an example.
- if (!(parts[0] in cur) && cur.execScript)
- cur.execScript('var ' + parts[0]);
-
- // Certain browsers cannot parse code in the form for((a in b); c;);
- // This pattern is produced by the JSCompiler when it collapses the
- // statement above into the conditional loop below. To prevent this from
- // happening, use a for-loop and reserve the init logic as below.
-
- // Parentheses added to eliminate strict JS warning in Firefox.
- for (var part; parts.length && (part = parts.shift());) {
- if (!parts.length && opt_object !== undefined) {
- // last part and we have an object; use it
- cur[part] = opt_object;
- } else if (cur[part]) {
- cur = cur[part];
- } else {
- cur = cur[part] = {};
- }
- }
-};
-
-// The following line causes the closureBuilder script to recognize this as
-// base.js .
-goog.provide('goog');
-
-/**
- * From closure/base.js:goog.exportPath_ .
- * @param {string} name
- * @param {Object=} opt_object
- */
-goog.exportSymbol = goog.provide;
-
-/**
- * NO-OP
- * @param {string} name
- */
-goog.require = function(name) {};
-
-/**
- * A simple form that supports only bound 'this', not arguments.
- * @param {Function} fn A function to partially apply.
- * @param {Object|undefined} selfObj Specifies the object which |this| should
- * point to when the function is run.
- * @return {!Function} A partially-applied form of the function bind() was
- * invoked as a method of.
- */
-goog.bind = function(fn, selfObj) {
- return function() {
- return fn.apply(selfObj, arguments);
- };
-};

Powered by Google App Engine
This is Rietveld 408576698