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

Unified Diff: chrome/browser/resources/options/chromeos/third_party_ime_confirm_overlay.html

Issue 325633003: Add confirmation dialog when enabling a 3rd party IME. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix nits. Created 6 years, 6 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/options/chromeos/third_party_ime_confirm_overlay.html
diff --git a/chrome/browser/resources/options/chromeos/third_party_ime_confirm_overlay.html b/chrome/browser/resources/options/chromeos/third_party_ime_confirm_overlay.html
new file mode 100644
index 0000000000000000000000000000000000000000..63084432fd1cff54b95e22e891fffcea51f4fbb6
--- /dev/null
+++ b/chrome/browser/resources/options/chromeos/third_party_ime_confirm_overlay.html
@@ -0,0 +1,21 @@
+<div id="third-party-ime-confirm-overlay" class="page" hidden>
+ <div class="close-button"></div>
+ <h1 i18n-content="thirdPartyImeConfirmOverlay"></h1>
+ <div class="content-area">
+ <span id="third-party-ime-confirm-text"
+ i18n-content="thirdPartyImeConfirmMessage">
+ </span>
+ </div>
+ <div class="action-area">
+ <div class="action-area-right">
+ <div class="button-strip">
+ <button id="third-party-ime-confirm-cancel"
+ i18n-content="thirdPartyImeConfirmDisable">
+ </button>
+ <button id="third-party-ime-confirm-ok" class="default-button"
+ i18n-content="thirdPartyImeConfirmEnable">
+ </button>
+ </div>
+ </div>
+ </div>
+</div>

Powered by Google App Engine
This is Rietveld 408576698