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

Side by Side Diff: chrome/browser/resources/settings/route.js

Issue 2296983002: [HBD] Update MD Site Settings Plugin section to show Flash title (Closed)
Patch Set: Created 4 years, 3 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 2016 The Chromium Authors. All rights reserved. 1 // Copyright 2016 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 cr.define('settings', function() { 5 cr.define('settings', function() {
6 /** 6 /**
7 * Class for navigable routes. May only be instantiated within this file. 7 * Class for navigable routes. May only be instantiated within this file.
8 * @constructor 8 * @constructor
9 * @param {string} path 9 * @param {string} path
10 * @private 10 * @private
(...skipping 135 matching lines...) Expand 10 before | Expand all | Expand 10 after
146 r.SITE_SETTINGS_BACKGROUND_SYNC = 146 r.SITE_SETTINGS_BACKGROUND_SYNC =
147 r.SITE_SETTINGS.createChild('backgroundSync'); 147 r.SITE_SETTINGS.createChild('backgroundSync');
148 r.SITE_SETTINGS_CAMERA = r.SITE_SETTINGS.createChild('camera'); 148 r.SITE_SETTINGS_CAMERA = r.SITE_SETTINGS.createChild('camera');
149 r.SITE_SETTINGS_COOKIES = r.SITE_SETTINGS.createChild('cookies'); 149 r.SITE_SETTINGS_COOKIES = r.SITE_SETTINGS.createChild('cookies');
150 r.SITE_SETTINGS_IMAGES = r.SITE_SETTINGS.createChild('images'); 150 r.SITE_SETTINGS_IMAGES = r.SITE_SETTINGS.createChild('images');
151 r.SITE_SETTINGS_JAVASCRIPT = r.SITE_SETTINGS.createChild('javascript'); 151 r.SITE_SETTINGS_JAVASCRIPT = r.SITE_SETTINGS.createChild('javascript');
152 r.SITE_SETTINGS_KEYGEN = r.SITE_SETTINGS.createChild('keygen'); 152 r.SITE_SETTINGS_KEYGEN = r.SITE_SETTINGS.createChild('keygen');
153 r.SITE_SETTINGS_LOCATION = r.SITE_SETTINGS.createChild('location'); 153 r.SITE_SETTINGS_LOCATION = r.SITE_SETTINGS.createChild('location');
154 r.SITE_SETTINGS_MICROPHONE = r.SITE_SETTINGS.createChild('microphone'); 154 r.SITE_SETTINGS_MICROPHONE = r.SITE_SETTINGS.createChild('microphone');
155 r.SITE_SETTINGS_NOTIFICATIONS = r.SITE_SETTINGS.createChild('notifications'); 155 r.SITE_SETTINGS_NOTIFICATIONS = r.SITE_SETTINGS.createChild('notifications');
156 r.SITE_SETTINGS_PLUGINS = r.SITE_SETTINGS.createChild('plugins'); 156 r.SITE_SETTINGS_FLASH = r.SITE_SETTINGS.createChild('flash');
157 r.SITE_SETTINGS_POPUPS = r.SITE_SETTINGS.createChild('popups'); 157 r.SITE_SETTINGS_POPUPS = r.SITE_SETTINGS.createChild('popups');
158 r.SITE_SETTINGS_UNSANDBOXED_PLUGINS = 158 r.SITE_SETTINGS_UNSANDBOXED_PLUGINS =
159 r.SITE_SETTINGS.createChild('unsandboxedPlugins'); 159 r.SITE_SETTINGS.createChild('unsandboxedPlugins');
160 r.SITE_SETTINGS_USB_DEVICES = r.SITE_SETTINGS.createChild('usbDevices'); 160 r.SITE_SETTINGS_USB_DEVICES = r.SITE_SETTINGS.createChild('usbDevices');
161 161
162 <if expr="chromeos"> 162 <if expr="chromeos">
163 r.DATETIME = r.ADVANCED.createSection('/dateTime', 'dateTime'); 163 r.DATETIME = r.ADVANCED.createSection('/dateTime', 'dateTime');
164 164
165 r.BLUETOOTH = r.ADVANCED.createSection('/bluetooth', 'bluetooth'); 165 r.BLUETOOTH = r.ADVANCED.createSection('/bluetooth', 'bluetooth');
166 r.BLUETOOTH_ADD_DEVICE = r.BLUETOOTH.createChild('/bluetoothAddDevice'); 166 r.BLUETOOTH_ADD_DEVICE = r.BLUETOOTH.createChild('/bluetoothAddDevice');
(...skipping 174 matching lines...) Expand 10 before | Expand all | Expand 10 after
341 Route: Route, 341 Route: Route,
342 RouteObserverBehavior: RouteObserverBehavior, 342 RouteObserverBehavior: RouteObserverBehavior,
343 getRouteForPath: getRouteForPath, 343 getRouteForPath: getRouteForPath,
344 initializeRouteFromUrl: initializeRouteFromUrl, 344 initializeRouteFromUrl: initializeRouteFromUrl,
345 getCurrentRoute: getCurrentRoute, 345 getCurrentRoute: getCurrentRoute,
346 getQueryParameters: getQueryParameters, 346 getQueryParameters: getQueryParameters,
347 navigateTo: navigateTo, 347 navigateTo: navigateTo,
348 navigateToPreviousRoute: navigateToPreviousRoute, 348 navigateToPreviousRoute: navigateToPreviousRoute,
349 }; 349 };
350 }); 350 });
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698