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

Unified Diff: chrome/test/data/extensions/api_test/preference/standard/test.js

Issue 14569010: Enable the settings UI to toggle the device ID on Windows. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: . Created 7 years, 8 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/common/extensions/api/privacy.json ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/test/data/extensions/api_test/preference/standard/test.js
diff --git a/chrome/test/data/extensions/api_test/preference/standard/test.js b/chrome/test/data/extensions/api_test/preference/standard/test.js
index db78a663c045b85a69d0de2e1aa9708bc153dbbe..237cc4c00f601c5b9e8d1779916dd04211d77e41 100644
--- a/chrome/test/data/extensions/api_test/preference/standard/test.js
+++ b/chrome/test/data/extensions/api_test/preference/standard/test.js
@@ -50,8 +50,8 @@ function expectFalse(pref) {
function prefGetter(pref) {
if (pref === 'protectedContentEnabled' && !this[pref]) {
- // `protectedContentEnabled` is ChromeOS only, so it might not exist when
- // this test runs, and that's pretty much OK.
+ // `protectedContentEnabled` is Windows/ChromeOS only, so it might not exist
+ // when this test runs, and that's pretty much OK.
return true;
}
this[pref].get({}, expectFalse(pref));
@@ -59,8 +59,8 @@ function prefGetter(pref) {
function prefSetter(pref) {
if (pref === 'protectedContentEnabled' && !this[pref]) {
- // `protectedContentEnabled` is ChromeOS only, so it might not exist when
- // this test runs, and that's pretty much OK.
+ // `protectedContentEnabled` is Windows/ChromeOS only, so it might not exist
+ // when this test runs, and that's pretty much OK.
return true;
}
this[pref].set({value: true}, chrome.test.callbackPass());
« no previous file with comments | « chrome/common/extensions/api/privacy.json ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698