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

Side by Side Diff: chrome/browser/resources/options/options_settings_app.js

Issue 11968034: Enable profile switching for standalone App Launcher via the Settings App. (Closed) Base URL: git://nomatter.syd/chromium/src.git@master
Patch Set: respond to comments Created 7 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 unified diff | Download patch
OLDNEW
1 // Copyright 2012 The Chromium Authors. All rights reserved. 1 // Copyright 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 (function() { 5 (function() {
6 if (document.location != 'chrome://settings-frame/options_settings_app.html') 6 if (document.location != 'chrome://settings-frame/options_settings_app.html')
7 return; 7 return;
8 8
9 document.documentElement.classList.add('settings-app'); 9 document.documentElement.classList.add('settings-app');
Evan Stade 2013/01/23 00:16:21 move this to OptionsPage.setIsSettingsApp. Also, d
koz (OOO until 15th September) 2013/01/23 02:58:58 Done.
10 OptionsPage.setIsSettingsApp();
10 11
11 // Override the offset in the options page. 12 // Override the offset in the options page.
12 OptionsPage.setHorizontalOffset(38); 13 OptionsPage.setHorizontalOffset(38);
13 14
14 loadTimeData.overrideValues(loadTimeData.getValue('settingsApp')); 15 loadTimeData.overrideValues(loadTimeData.getValue('settingsApp'));
15 }()); 16 }());
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698