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

Unified Diff: components/webui_generator/resources/context.js

Issue 1181703008: Removed webui_generator and new OOBE UI placeholder. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Removed empty line. 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 side-by-side diff with in-line comments
Download patch
Index: components/webui_generator/resources/context.js
diff --git a/components/webui_generator/resources/context.js b/components/webui_generator/resources/context.js
deleted file mode 100644
index 0bd28f1d5f0fa8d17c2524d2c0a9fe1a3d7c2f4c..0000000000000000000000000000000000000000
--- a/components/webui_generator/resources/context.js
+++ /dev/null
@@ -1,21 +0,0 @@
-// Copyright (c) 2014 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(global) {
- var has_cr = !!global.cr;
- var cr_define_bckp = null;
- if (has_cr && global.cr.define)
- cr_define_bckp = global.cr.define;
- if (!has_cr)
- global.cr = {}
- global.cr.define = function(_, define) {
- global.wug = global.wug || {}
- global.wug.Context = define().ScreenContext;
- }
-<include src="../../../chrome/browser/resources/chromeos/login/screen_context.js">
- if (!has_cr)
- delete global.cr;
- if (cr_define_bckp)
- global.cr.define = cr_define_bckp;
-})(this);
« no previous file with comments | « components/webui_generator/resources/context.html ('k') | components/webui_generator/resources/webui-view.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698