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

Side by Side Diff: chrome/browser/resources/extensions/extension_load_error.html

Issue 252593003: Improve UI for unpacked extensions failing to load (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: ExtensionCode js object Created 6 years, 8 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
(Empty)
1 <!DOCTYPE html>
2 <!--
3 Copyright 2014 The Chromium Authors. All rights reserved.
4 Use of this source code is governed by a BSD-style license that can be found
5 in the LICENSE file.
6 -->
7 <div id="extension-load-error" hidden>
not at google - send to devlin 2014/04/25 21:00:34 it would be better if the "hidden" property were o
Devlin 2014/04/25 22:19:09 I don't think it can be, since it is done through
8 <h2 i18n-content="extensionLoadErrorHeading">Extension Load Error</h2>
9 <div id="extension-load-error-message">
10 <span i18n-content="extensionLoadErrorMessage"></span>
11 <span id="extension-load-error-path"></span>
12 </div>
13 <span id="extension-load-error-reason"></span>
14 <div id="extension-load-error-manifest" class="extension-code"></div>
15 <div id="extension-load-error-controls">
16 <button id="extension-load-error-retry-button"
17 i18n-content="extensionLoadErrorRetry"></button>
18 <button id="extension-load-error-give-up-button"
19 i18n-content="extensionLoadErrorGiveUp"></button>
20 </div>
21 </div>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698