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

Side by Side Diff: components/sync/tools/testserver/chromiumsync.py

Issue 2130453004: [Sync] Move //sync to //components/sync. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase. Created 4 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
OLDNEW
1 # Copyright 2013 The Chromium Authors. All rights reserved. 1 # Copyright 2013 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 """An implementation of the server side of the Chromium sync protocol. 5 """An implementation of the server side of the Chromium sync protocol.
6 6
7 The details of the protocol are described mostly by comments in the protocol 7 The details of the protocol are described mostly by comments in the protocol
8 buffer definition at chrome/browser/sync/protocol/sync.proto. 8 buffer definition at chrome/browser/sync/protocol/sync.proto.
9 """ 9 """
10 10
(...skipping 1621 matching lines...) Expand 10 before | Expand all | Expand 10 after
1632 1632
1633 Args: 1633 Args:
1634 sessions_commit_delay_seconds: The desired sync delay time for sessions. 1634 sessions_commit_delay_seconds: The desired sync delay time for sessions.
1635 """ 1635 """
1636 if not self._client_command: 1636 if not self._client_command:
1637 self._client_command = client_commands_pb2.ClientCommand() 1637 self._client_command = client_commands_pb2.ClientCommand()
1638 1638
1639 self._client_command.sessions_commit_delay_seconds = \ 1639 self._client_command.sessions_commit_delay_seconds = \
1640 sessions_commit_delay_seconds 1640 sessions_commit_delay_seconds
1641 return self._client_command 1641 return self._client_command
OLDNEW
« no previous file with comments | « components/sync/tools/testserver/DEPS ('k') | components/sync/tools/testserver/chromiumsync_test.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698