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

Unified Diff: trunk/src/chrome/test/data/extensions/api_test/preferences_private/test.js

Issue 105533004: Revert 241977 "Add hook for extension to check sync status." (Closed) Base URL: svn://svn.chromium.org/chrome/
Patch Set: Created 7 years 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 | « trunk/src/chrome/test/data/extensions/api_test/preferences_private/manifest.json ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: trunk/src/chrome/test/data/extensions/api_test/preferences_private/test.js
===================================================================
--- trunk/src/chrome/test/data/extensions/api_test/preferences_private/test.js (revision 242037)
+++ trunk/src/chrome/test/data/extensions/api_test/preferences_private/test.js (working copy)
@@ -1,20 +0,0 @@
-// Copyright 2013 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-chrome.test.runTests([function() {
- chrome.preferencesPrivate.getSyncCategoriesWithoutPassphrase(
- chrome.test.callbackPass(
- function(categories) {
- chrome.test.assertTrue(categories.indexOf("Bookmarks") >= 0,
- "Bookmarks is missing.");
- chrome.test.assertTrue(categories.indexOf("Preferences") >= 0,
- "Preferences is missing.");
- chrome.test.assertTrue(categories.indexOf("Autofill") == -1,
- "Autofill present even though it's encrypted.");
- chrome.test.assertTrue(categories.indexOf("Typed URLs") == -1,
- "Typed URLs present even though it's not synced.");
- }
- )
- );
-}]);
« no previous file with comments | « trunk/src/chrome/test/data/extensions/api_test/preferences_private/manifest.json ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698