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

Unified Diff: chrome/browser/resources/options/import_data_overlay.html

Issue 3143012: Reland r55881: Disable the 'Clear browsing Data' button when no checkboxes are checked. (Closed) Base URL: git://git.chromium.org/chromium.git
Patch Set: address stuart concern Created 10 years, 4 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
« no previous file with comments | « chrome/browser/resources/options/clear_browser_data_overlay.js ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/resources/options/import_data_overlay.html
diff --git a/chrome/browser/resources/options/import_data_overlay.html b/chrome/browser/resources/options/import_data_overlay.html
index 45dee1d4700bb8310bd2df97a67c5398a8d9e4f7..2505e5c86c9a4e4e6685d9b8510be501f2f770a9 100644
--- a/chrome/browser/resources/options/import_data_overlay.html
+++ b/chrome/browser/resources/options/import_data_overlay.html
@@ -23,8 +23,13 @@
<span i18n-content="import_history">
</label><br>
</div>
- <button id="import-data-cancel" i18n-content="cancel"
- onclick="ImportDataOverlay.dismiss();"></button>
- <button id="import-data-commit" i18n-content="import_commit"></button>
+ <if expr="os == 'win32'">
+ <button id="import-data-commit" i18n-content="import_commit"></button>
+ </if>
+ <button id="import-data-cancel" i18n-content="cancel"
+ onclick="ImportDataOverlay.dismiss();"></button>
+ <if expr="os != 'win32'">
+ <button id="import-data-commit" i18n-content="import_commit"></button>
+ </if>
<span id="import-throbber"></span>
</div>
« no previous file with comments | « chrome/browser/resources/options/clear_browser_data_overlay.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698