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

Side by Side 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 unified diff | Download patch
OLDNEW
(Empty)
1 // Copyright (c) 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 (function(global) {
6 var has_cr = !!global.cr;
7 var cr_define_bckp = null;
8 if (has_cr && global.cr.define)
9 cr_define_bckp = global.cr.define;
10 if (!has_cr)
11 global.cr = {}
12 global.cr.define = function(_, define) {
13 global.wug = global.wug || {}
14 global.wug.Context = define().ScreenContext;
15 }
16 <include src="../../../chrome/browser/resources/chromeos/login/screen_context.js ">
17 if (!has_cr)
18 delete global.cr;
19 if (cr_define_bckp)
20 global.cr.define = cr_define_bckp;
21 })(this);
OLDNEW
« 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