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

Side by Side Diff: chrome/browser/resources/options2/browser_options.html

Issue 9181013: [uber page] Migrate remaining Personal options into Browser options. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: How about another rebase! (damn you generated_resources.grd) Created 8 years, 11 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
1 <div id="browserPage" class="page" hidden> 1 <div id="browserPage" class="page" hidden>
2 <h1 i18n-content="settingsTitle"></h1> 2 <h1 i18n-content="settingsTitle"></h1>
3 <section id="sync-section"> 3 <section id="sync-section">
4 <h3 i18n-content="syncSection"></h3> 4 <h3 i18n-content="syncSection"></h3>
5 <div id="sync-overview" class="section-description" hidden> 5 <div id="sync-overview" class="section-description" hidden>
6 <span i18n-content="syncOverview"></span> 6 <span i18n-content="syncOverview"></span>
7 <a i18n-values="href:syncLearnMoreURL" i18n-content="learnMore"></a> 7 <a i18n-values="href:syncLearnMoreURL" i18n-content="learnMore"></a>
8 </div> 8 </div>
9 <div id="sync-status" hidden> 9 <div id="sync-status" hidden>
10 <span id="sync-status-text"></span> 10 <span id="sync-status-text"></span>
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after
51 <span id="startupShowPagesLabel" 51 <span id="startupShowPagesLabel"
52 i18n-content="startupShowPages"></span> 52 i18n-content="startupShowPages"></span>
53 <button id="startupSetPages" class="link-button" 53 <button id="startupSetPages" class="link-button"
54 i18n-content="startupSetPages"></button> 54 i18n-content="startupSetPages"></button>
55 </span> 55 </span>
56 </label> 56 </label>
57 </div> 57 </div>
58 </div> 58 </div>
59 </section> 59 </section>
60 <section> 60 <section>
61 <h3 i18n-content="toolbarGroupName"></h3> 61 <h3 i18n-content="appearance"></h3>
62 <div> 62 <div>
63 <div class="checkbox"> 63 <div class="checkbox">
64 <input id="toolbarShowHomeButton" pref="browser.show_home_button" 64 <input id="toolbarShowHomeButton" pref="browser.show_home_button"
65 metric="Options_Homepage_HomeButton" type="checkbox"> 65 metric="Options_Homepage_HomeButton" type="checkbox">
66 <label id="home-page-label" for="toolbarShowHomeButton" 66 <label id="home-page-label" for="toolbarShowHomeButton"
67 i18n-content="toolbarShowHomeButton"> 67 i18n-content="toolbarShowHomeButton">
68 </label> 68 </label>
69 <button id="change-home-page" i18n-content="changeHomePage" 69 <button id="change-home-page" i18n-content="changeHomePage"
70 class="link-button custom-appearance"></button> 70 class="link-button custom-appearance"></button>
71 </div> 71 </div>
72 <div class="checkbox"> 72 <div class="checkbox">
73 <label> 73 <label>
74 <input id="toolbarShowBookmarksBar" 74 <input id="toolbarShowBookmarksBar"
75 pref="bookmark_bar.show_on_all_tabs" 75 pref="bookmark_bar.show_on_all_tabs"
76 metric="Options_ShowBookmarksBar" type="checkbox"> 76 metric="Options_ShowBookmarksBar" type="checkbox">
77 <span i18n-content="toolbarShowBookmarksBar"></span> 77 <span i18n-content="toolbarShowBookmarksBar"></span>
78 </label> 78 </label>
79 </div> 79 </div>
80 </div> 80 </div>
81 <if expr="not pp_ifdef('toolkit_views') and is_posix and not is_macosx">
82 <div>
83 <div>
84 <button id="themes-GTK-button"
85 i18n-content="themesGTKButton"></button>
86 <button id="themes-reset"
87 i18n-content="themesSetClassic"></button>
88 </div>
89 <div id="themes-gallery-div">
90 <a id="themes-gallery" i18n-content="themesGallery"
91 i18n-values="href:themesGalleryURL" target="_blank"></a>
92 </div>
93 <div class="radio">
94 <label>
95 <input name="decorations_radio" pref="browser.custom_chrome_frame"
96 type="radio" value="false" metric="Options_CustomFrame">
97 <span i18n-content="showWindowDecorations"></span>
98 </label>
99 </div>
100 <div class="radio">
101 <label>
102 <input name="decorations_radio" pref="browser.custom_chrome_frame"
103 type="radio" value="true" metric="Options_CustomFrame">
104 <span i18n-content="hideWindowDecorations"></span>
105 </label>
106 </div>
107 </div>
108 </if>
109 <if expr="pp_ifdef('toolkit_views') or os == 'win32' or os == 'darwin'">
110 <div>
111 <button id="themes-gallery" i18n-content="themesGallery"></button>
112 <button id="themes-reset" i18n-content="themesReset"></button>
113 </div>
114 </if>
81 </section> 115 </section>
82 <section> 116 <section>
83 <h3 i18n-content="defaultSearchGroupName"></h3> 117 <h3 i18n-content="defaultSearchGroupName"></h3>
84 <div id="defaultSearchEngineGroup"> 118 <div id="defaultSearchEngineGroup">
85 <div id="defaultSearchGroupLabel" 119 <div id="defaultSearchGroupLabel"
86 i18n-values=".innerHTML:defaultSearchGroupLabel"></div> 120 i18n-values=".innerHTML:defaultSearchGroupLabel"></div>
87 <div> 121 <div>
88 <select id="defaultSearchEngine" class="weakrtl"></select> 122 <select id="defaultSearchEngine" class="weakrtl"></select>
89 <button id="defaultSearchManageEnginesButton" 123 <button id="defaultSearchManageEnginesButton"
90 i18n-content="defaultSearchManageEngines"></button> 124 i18n-content="defaultSearchManageEngines"></button>
91 </div> 125 </div>
92 <div id="instantOption" class="checkbox"> 126 <div id="instantOption" class="checkbox">
93 <label id="instantLabel"> 127 <label id="instantLabel">
94 <!-- TODO(estade): metric? --> 128 <!-- TODO(estade): metric? -->
95 <input id="instantFieldTrialCheckbox" type="checkbox" 129 <input id="instantFieldTrialCheckbox" type="checkbox"
96 checked="checked" hidden> 130 checked="checked" hidden>
97 <input id="instantEnabledCheckbox" type="checkbox" 131 <input id="instantEnabledCheckbox" type="checkbox"
98 pref="instant.enabled"> 132 pref="instant.enabled">
99 <span i18n-values=".innerHTML:instantPrefAndWarning"></span> 133 <span i18n-values=".innerHTML:instantPrefAndWarning"></span>
100 </label> 134 </label>
101 </div> 135 </div>
102 </div> 136 </div>
103 </section> 137 </section>
104 <section id="profiles-section" hidden> 138 <section id="profiles-section" hidden>
105 <h3 i18n-content="profiles"></h3> 139 <h3 i18n-content="profiles"></h3>
140 <if expr="pp_ifdef('chromeos')">
141 <div>
142 <span id="account-picture-wrapper">
143 <img id="account-picture"
144 src="chrome://theme/IDR_PROFILE_PICTURE_LOADING">
145 </span>
146 <label>
147 <input id="enable-screen-lock" type="checkbox"
148 pref="settings.enable_screen_lock">
149 <span i18n-content="enableScreenlock"></span>
150 </label>
151 <br>
152 <button id="change-picture-button" i18n-content="changePicture"></button>
153 </div>
154 </if>
106 <div> 155 <div>
107 <list id="profiles-list" class="settings-list" hidden></list> 156 <list id="profiles-list" class="settings-list" hidden></list>
108 <div id="profiles-single-message" i18n-content="profilesSingleUser"> 157 <div id="profiles-single-message" i18n-content="profilesSingleUser">
109 </div> 158 </div>
110 <div id="profiles-buttons"> 159 <div id="profiles-buttons">
111 <button id="profiles-create" i18n-content="profilesCreate"></button> 160 <button id="profiles-create" i18n-content="profilesCreate"></button>
112 <button id="profiles-manage" i18n-content="profilesManage" disabled> 161 <button id="profiles-manage" i18n-content="profilesManage" disabled>
113 </button> 162 </button>
114 <button id="profiles-delete" i18n-content="profilesDelete"> 163 <button id="profiles-delete" i18n-content="profilesDelete">
115 </button> 164 </button>
116 </div> 165 </div>
117 </div> 166 </div>
167 <if expr="not pp_ifdef('chromeos')">
168 <div id="manage-data-group">
169 <div i18n-content="manageDataDescription"></div>
170 <div>
171 <button id="import-data" i18n-content="importData"></button>
172 </div>
173 </div>
174 </if>
118 </section> 175 </section>
119 <if expr="not pp_ifdef('chromeos')"> 176 <if expr="not pp_ifdef('chromeos')">
120 <section> 177 <section>
121 <h3 i18n-content="defaultBrowserGroupName"></h3> 178 <h3 i18n-content="defaultBrowserGroupName"></h3>
122 <div> 179 <div>
123 <button id="defaultBrowserUseAsDefaultButton" 180 <button id="defaultBrowserUseAsDefaultButton"
124 i18n-content="defaultBrowserUseAsDefault"></button> 181 i18n-content="defaultBrowserUseAsDefault"></button>
125 <div id="defaultBrowserState" 182 <div id="defaultBrowserState"
126 i18n-content="defaultBrowserUnknown"></div> 183 i18n-content="defaultBrowserUnknown"></div>
127 </div> 184 </div>
128 </section> 185 </section>
129 </if> 186 </if>
130 <section> 187 <section>
131 <h3 i18n-content="advancedGroupName"></h3> 188 <h3 i18n-content="advancedGroupName"></h3>
132 <div> 189 <div>
133 <div i18n-content="advancedGroupDescription"></div> 190 <div i18n-content="advancedGroupDescription"></div>
134 <button id="advancedOptionsButton" 191 <button id="advancedOptionsButton"
135 i18n-content="advancedOptionsButtonTitle"></button> 192 i18n-content="advancedOptionsButtonTitle"></button>
136 </div> 193 </div>
137 </section> 194 </section>
138 </div> 195 </div>
OLDNEW
« no previous file with comments | « chrome/app/generated_resources.grd ('k') | chrome/browser/resources/options2/browser_options.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698