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

Unified Diff: chrome/browser/resources/apps_debugger/main.html

Issue 15810003: App Developer Tools: Implemented separate tabs for unpacked apps and extensions. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@242747-appdevtools-ux
Patch Set: Created 7 years, 7 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/apps_debugger/main.html
diff --git a/chrome/browser/resources/apps_debugger/main.html b/chrome/browser/resources/apps_debugger/main.html
index 47e1e7431817e996d73e0d11c9122545c5677f6f..61e9e3cc865c061a0956d4ed9456b984d1bad1ea 100644
--- a/chrome/browser/resources/apps_debugger/main.html
+++ b/chrome/browser/resources/apps_debugger/main.html
@@ -42,6 +42,7 @@ found in the LICENSE file.
</div>
<div id="tabs-header-container">
<tabs id="tabs" tabindex="0">
+ <tab i18n-content="appsDevtoolUnpacked"></tab>
<tab i18n-content="appsDevtoolApps"></tab>
<tab i18n-content="appsDevtoolExtensions"></tab>
</tabs>
@@ -50,6 +51,15 @@ found in the LICENSE file.
</div>
</div> <!-- #header -->
<tabpanels id="tab-panels">
+ <!-- Unpacked -->
+ <tabpanel id="unpacked-tab">
+ <div id="unpacked-settings-list" class="empty-extension-list">
+ </div>
+ <div id="no-unpacked">
+ <span id="no-unpacked-message"
+ i18n-content="appsDevtoolNoUnpacked"></span>
+ </div>
+ </tabpanel>
<!-- Apps Tab -->
<tabpanel id="apps-tab">
<div id="app-settings-list" class="empty-extension-list">

Powered by Google App Engine
This is Rietveld 408576698