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

Side by Side Diff: chrome/browser/resources/extensions/extension_commands_overlay.js

Issue 406143002: webui: Remove unnecessary </include>s everywhere. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: GARRRRRR Created 6 years, 5 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 | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 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 <include src="extension_command_list.js"></include> 5 <include src="extension_command_list.js">
6 6
7 cr.define('extensions', function() { 7 cr.define('extensions', function() {
8 'use strict'; 8 'use strict';
9 9
10 // The Extension Commands list object that will be used to show the commands 10 // The Extension Commands list object that will be used to show the commands
11 // on the page. 11 // on the page.
12 var ExtensionCommandList = options.ExtensionCommandList; 12 var ExtensionCommandList = options.ExtensionCommandList;
13 13
14 /** 14 /**
15 * ExtensionCommandsOverlay class 15 * ExtensionCommandsOverlay class
(...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after
68 list.classList.add('empty-extension-commands-list'); 68 list.classList.add('empty-extension-commands-list');
69 else 69 else
70 list.classList.remove('empty-extension-commands-list'); 70 list.classList.remove('empty-extension-commands-list');
71 } 71 }
72 72
73 // Export 73 // Export
74 return { 74 return {
75 ExtensionCommandsOverlay: ExtensionCommandsOverlay 75 ExtensionCommandsOverlay: ExtensionCommandsOverlay
76 }; 76 };
77 }); 77 });
OLDNEW
« no previous file with comments | « chrome/browser/resources/extensions/chromeos/kiosk_apps.js ('k') | chrome/browser/resources/extensions/extension_error.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698