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

Side by Side Diff: chrome/browser/resources/apps_debugger/main.html

Issue 12317036: Add API in developerPrivate to allow/ disallow incognito mode. (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: . Created 7 years, 10 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
OLDNEW
1 <!DOCTYPE html> 1 <!DOCTYPE html>
2 <html> 2 <html>
3 <!-- 3 <!--
4 4
5 Copyright (c) 2012 The Chromium Authors. All rights reserved. 5 Copyright (c) 2012 The Chromium Authors. All rights reserved.
6 Use of this source code is governed by a BSD-style license that can be 6 Use of this source code is governed by a BSD-style license that can be
7 found in the LICENSE file. 7 found in the LICENSE file.
8 8
9 --> 9 -->
10 <head> 10 <head>
(...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after
75 </div> 75 </div>
76 <div class="extension-warnings" hidden> 76 <div class="extension-warnings" hidden>
77 <span i18n-content="extensionSettingsInstallWarnings"></span> 77 <span i18n-content="extensionSettingsInstallWarnings"></span>
78 </div> 78 </div>
79 <div class="install-warnings" hidden> 79 <div class="install-warnings" hidden>
80 <span i18n-content="extensionSettingsWarningsTitle"></span> 80 <span i18n-content="extensionSettingsWarningsTitle"></span>
81 <ul></ul> 81 <ul></ul>
82 </div> 82 </div>
83 <div class="optional-controls"> 83 <div class="optional-controls">
84 <button class="show-button" 84 <button class="show-button"
85 i18n-content="extensionSettingsShowButton" hidden></button> 85 i18n-content="extensionSettingsShowButton" hidden>
86 </button>
86 <span class="optional-control-disableable"> 87 <span class="optional-control-disableable">
88 <label class="incognito-control" hidden>
89 <input type="checkbox">
90 <span i18n-content="extensionSettingsEnableIncognito"></span>
91 </label>
87 <label class="file-access-control" hidden> 92 <label class="file-access-control" hidden>
88 <input type="checkbox"> 93 <input type="checkbox">
89 <span i18n-content="extensionSettingsAllowFileAccess"> 94 <span i18n-content="extensionSettingsAllowFileAccess">
90 </span> 95 </span>
91 </label> 96 </label>
92 <a class="options-link" i18n-content="extensionSettingsOptions" 97 <a class="options-link" i18n-content="extensionSettingsOptions"
93 href="#" target="_blank" hidden></a> 98 href="#" target="_blank" hidden></a>
94 <a class="reload-link" href="#" 99 <a class="reload-link" href="#"
95 i18n-content="extensionSettingsReloadUnpacked" hidden></a> 100 i18n-content="extensionSettingsReloadUnpacked" hidden></a>
96 </span> 101 </span>
(...skipping 14 matching lines...) Expand all
111 </label> 116 </label>
112 <span class="location-text"></span> 117 <span class="location-text"></span>
113 </div> 118 </div>
114 </div> 119 </div>
115 </div> 120 </div>
116 </div> 121 </div>
117 <include src="../../../../ui/webui/resources/html/trash.html"> 122 <include src="../../../../ui/webui/resources/html/trash.html">
118 </div> 123 </div>
119 </body> 124 </body>
120 </html> 125 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698