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

Unified Diff: chrome/browser/resources/about_version.html

Issue 14834011: Android: use grit target platform instead of define. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Add missed pp_ifdef(android) 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
« no previous file with comments | « chrome/browser/resources/about_memory_linux.html ('k') | chrome/browser/resources/flags.css » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/resources/about_version.html
diff --git a/chrome/browser/resources/about_version.html b/chrome/browser/resources/about_version.html
index 2cc78a27127b3cc601d819b075b7c4e0ae09ab42..7e187ff787d59c597f798694f1d972fb926bf085 100644
--- a/chrome/browser/resources/about_version.html
+++ b/chrome/browser/resources/about_version.html
@@ -7,11 +7,11 @@ about:version template page
<html id="t" i18n-values="dir:textdirection;">
<head>
<title i18n-content="title"></title>
-<if expr="pp_ifdef('android')">
+<if expr="is_android">
<meta name="viewport" content="width=device-width">
</if>
<link rel="stylesheet" href="chrome://version/about_version.css">
-<if expr="pp_ifdef('android')">
+<if expr="is_android">
<link rel="stylesheet" href="about_version_android.css">
</if>
<script src="chrome://resources/js/cr.js"></script>
@@ -37,11 +37,11 @@ about:version template page
<table id="inner" cellpadding="0" cellspacing="0" border="0">
<tr><td class="label" i18n-content="application_label"></td>
<td class="version" id="version">
-<if expr="pp_ifdef('android')">
+<if expr="is_android">
<span i18n-content="application_name"></span>
<span i18n-content="application_version"></span>
</if>
-<if expr="not pp_ifdef('android')">
+<if expr="not is_android">
<span i18n-content="version"></span>
(<span i18n-content="official">
</span> <span i18n-content="cl"></span>)
@@ -72,7 +72,7 @@ about:version template page
<span i18n-content="js_version"></span>
</td>
</tr>
-<if expr="not pp_ifdef('android')">
+<if expr="not is_android">
<tr><td class="label" i18n-content="flash_plugin"></td>
<td class="version" id="flash_version" i18n-content="flash_version"></td>
</tr>
@@ -93,7 +93,7 @@ about:version template page
<td class="label" i18n-content="variations_name"></td>
<td class="version" id="variations-list"></td>
</tr>
-<if expr="pp_ifdef('android')">
+<if expr="is_android">
<tr id="build-id-section">
<td class="label" i18n-content="build_id_name"></td>
<td class="version" i18n-content="build_id"></td>
« no previous file with comments | « chrome/browser/resources/about_memory_linux.html ('k') | chrome/browser/resources/flags.css » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698