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

Side by Side Diff: chrome/test/data/extensions/api_test/permissions/optional/background.html

Issue 7491059: Remove CRLFs from extension test files. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 <script> 1 <script>
2 2
3 var assertFalse = chrome.test.assertFalse; 3 var assertFalse = chrome.test.assertFalse;
4 var assertTrue = chrome.test.assertTrue; 4 var assertTrue = chrome.test.assertTrue;
5 var fail = chrome.test.callbackFail; 5 var fail = chrome.test.callbackFail;
6 var pass = chrome.test.callbackPass; 6 var pass = chrome.test.callbackPass;
7 var listenOnce = chrome.test.listenOnce; 7 var listenOnce = chrome.test.listenOnce;
8 8
9 var NOT_OPTIONAL_ERROR = 9 var NOT_OPTIONAL_ERROR =
10 "Optional permissions must be listed in extension manifest."; 10 "Optional permissions must be listed in extension manifest.";
(...skipping 168 matching lines...) Expand 10 before | Expand all | Expand 10 after
179 {permissions: ['chromeAuthPrivate']}, fail(error_msg)); 179 {permissions: ['chromeAuthPrivate']}, fail(error_msg));
180 }, 180 },
181 181
182 function unknownPermission() { 182 function unknownPermission() {
183 var error_msg = UNKNOWN_PERMISSIONS_ERROR.replace('*', 'asdf'); 183 var error_msg = UNKNOWN_PERMISSIONS_ERROR.replace('*', 'asdf');
184 chrome.experimental.permissions.request( 184 chrome.experimental.permissions.request(
185 {permissions: ['asdf']}, fail(error_msg)); 185 {permissions: ['asdf']}, fail(error_msg));
186 } 186 }
187 ]); 187 ]);
188 </script> 188 </script>
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698