blob: 569f8d25eb5d2ef5ece6dac5e8f96c5ef9ab1729 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
|
// Copyright (c) 2010 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.
#ifndef CHROME_BROWSER_SYNC_NOTIFICATION_METHOD_H_
#define CHROME_BROWSER_SYNC_NOTIFICATION_METHOD_H_
#include <string>
namespace browser_sync {
// This is the matrix for the interaction between clients with
// different notification methods:
//
// Listen
// L T N
// +-------+
// L | E E E |
// Send T | Y Y Y |
// N | E Y Y |
// +-------+
//
// 'Y' means a client listening with the column notification method
// will receive notifications from a client sending with the row
// notification method. 'E' means means that the notification will be
// an empty one, which may be dropped by the server in the future.
enum NotificationMethod {
// Old, broken notification method. Works only if notification
// servers don't drop empty notifications.
NOTIFICATION_LEGACY,
// Compatible with new notifications. Also compatible with legacy
// notifications if the notification servers don't drop empty
// notifications.
NOTIFICATION_TRANSITIONAL,
// New, ideal notification method. Compatible only with
// transitional notifications.
NOTIFICATION_NEW,
};
extern const NotificationMethod kDefaultNotificationMethod;
std::string NotificationMethodToString(
NotificationMethod notification_method);
// If the given string is not one of "legacy", "transitional", or
// "new", returns kDefaultNotificationMethod.
NotificationMethod StringToNotificationMethod(const std::string& str);
} // namespace browser_sync
#endif // CHROME_BROWSER_SYNC_NOTIFICATION_METHOD_H_
|