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

Unified Diff: chrome/browser/resources/md_extensions/item_source.js

Issue 2723613004: [MD Extensions] Update Detail View UI (Closed)
Patch Set: nit Created 3 years, 9 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: chrome/browser/resources/md_extensions/item_source.js
diff --git a/chrome/browser/resources/md_extensions/item_source.js b/chrome/browser/resources/md_extensions/item_source.js
deleted file mode 100644
index 3b16ea9bbd3dfc63ada6739814b654a8174b9f56..0000000000000000000000000000000000000000
--- a/chrome/browser/resources/md_extensions/item_source.js
+++ /dev/null
@@ -1,52 +0,0 @@
-// Copyright 2016 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.
-
-// Closure compiler won't let this be declared inside cr.define().
-/** @enum {string} */
-var SourceType = {
- WEBSTORE: 'webstore',
- POLICY: 'policy',
- SIDELOADED: 'sideloaded',
- UNPACKED: 'unpacked',
-};
-
-cr.define('extensions', function() {
- /**
- * @param {chrome.developerPrivate.ExtensionInfo} item
- * @return {SourceType}
- */
- function getItemSource(item) {
- if (item.controlledInfo &&
- item.controlledInfo.type ==
- chrome.developerPrivate.ControllerType.POLICY) {
- return SourceType.POLICY;
- }
- if (item.location == chrome.developerPrivate.Location.THIRD_PARTY)
- return SourceType.SIDELOADED;
- if (item.location == chrome.developerPrivate.Location.UNPACKED)
- return SourceType.UNPACKED;
- return SourceType.WEBSTORE;
- }
-
- /**
- * @param {SourceType} source
- * @return {string}
- */
- function getItemSourceString(source) {
- switch (source) {
- case SourceType.POLICY:
- return loadTimeData.getString('itemSourcePolicy');
- case SourceType.SIDELOADED:
- return loadTimeData.getString('itemSourceSideloaded');
- case SourceType.UNPACKED:
- return loadTimeData.getString('itemSourceUnpacked');
- case SourceType.WEBSTORE:
- return loadTimeData.getString('itemSourceWebstore');
- }
- assertNotReached();
- }
-
- return {getItemSource: getItemSource,
- getItemSourceString: getItemSourceString};
-});
« no previous file with comments | « chrome/browser/resources/md_extensions/item_source.html ('k') | chrome/browser/resources/md_extensions/item_util.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698