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

Unified Diff: sync/tools/testserver/chromiumsync.py

Issue 11971025: [sync] Divorce python sync test server chromiumsync.py from testserver.py (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « sync/tools/testserver/OWNERS ('k') | sync/tools/testserver/chromiumsync_test.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sync/tools/testserver/chromiumsync.py
diff --git a/net/tools/testserver/chromiumsync.py b/sync/tools/testserver/chromiumsync.py
similarity index 99%
rename from net/tools/testserver/chromiumsync.py
rename to sync/tools/testserver/chromiumsync.py
index c4138bacf898f27d2882bb9665489c0232ced0dd..eb631c28e0e8fcbdc017ca2291ff25601f957922 100644
--- a/net/tools/testserver/chromiumsync.py
+++ b/sync/tools/testserver/chromiumsync.py
@@ -1,4 +1,4 @@
-# Copyright (c) 2012 The Chromium Authors. All rights reserved.
+# 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.
@@ -442,13 +442,11 @@ class SyncDataModel(object):
parent_tag=ROOT_ID, sync_type=BOOKMARK),
PermanentItem('bookmark_bar', name='Bookmark Bar',
parent_tag='google_chrome_bookmarks', sync_type=BOOKMARK),
- PermanentItem('synced_bookmarks', name='Mobile Bookmarks',
- parent_tag='google_chrome_bookmarks', sync_type=BOOKMARK),
PermanentItem('other_bookmarks', name='Other Bookmarks',
parent_tag='google_chrome_bookmarks', sync_type=BOOKMARK),
PermanentItem('synced_bookmarks', name='Synced Bookmarks',
parent_tag='google_chrome_bookmarks', sync_type=BOOKMARK,
- create_by_default=False),
+ create_by_default=False), # Must be True in the iOS tree.
PermanentItem('google_chrome_autofill', name='Autofill',
parent_tag=ROOT_ID, sync_type=AUTOFILL),
PermanentItem('google_chrome_autofill_profiles', name='Autofill Profiles',
@@ -472,7 +470,8 @@ class SyncDataModel(object):
parent_tag=ROOT_ID, sync_type=PASSWORD),
PermanentItem('google_chrome_preferences', name='Preferences',
parent_tag=ROOT_ID, sync_type=PREFERENCE),
- PermanentItem('google_chrome_preferences', name='Synced Notifications',
+ PermanentItem('google_chrome_synced_notifications',
Raghu Simha 2013/01/17 09:08:25 This bug wasn't detected because chromiumsync_test
+ name='Synced Notifications',
parent_tag=ROOT_ID, sync_type=SYNCED_NOTIFICATION),
PermanentItem('google_chrome_search_engines', name='Search Engines',
parent_tag=ROOT_ID, sync_type=SEARCH_ENGINE),
@@ -1047,7 +1046,7 @@ class TestServer(object):
TestServer consumes the sync command messages that are the outermost
layers of the protocol, performs the corresponding actions on its
- SyncDataModel, and constructs an appropropriate response message.
+ SyncDataModel, and constructs an appropriate response message.
"""
def __init__(self):
« no previous file with comments | « sync/tools/testserver/OWNERS ('k') | sync/tools/testserver/chromiumsync_test.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698