OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 // Sync protocol for communication between sync client and server. | 5 // Sync protocol for communication between sync client and server. |
6 | 6 |
7 // Update proto_value_conversions{.h,.cc,_unittest.cc} if you change | 7 // Update proto_value_conversions{.h,.cc,_unittest.cc} if you change |
8 // any fields in this file. | 8 // any fields in this file. |
9 | 9 |
10 syntax = "proto2"; | 10 syntax = "proto2"; |
(...skipping 27 matching lines...) Expand all Loading... |
38 KEYSTORE_TOKEN_UPDATED = 11; // A new keystore encryption token was | 38 KEYSTORE_TOKEN_UPDATED = 11; // A new keystore encryption token was |
39 // persisted. | 39 // persisted. |
40 CONFIGURE_COMPLETE = 12; // The datatype manager has finished an | 40 CONFIGURE_COMPLETE = 12; // The datatype manager has finished an |
41 // at least partially successful | 41 // at least partially successful |
42 // configuration and is once again syncing | 42 // configuration and is once again syncing |
43 // with the server. | 43 // with the server. |
44 BOOTSTRAP_TOKEN_UPDATED = 13; // A new cryptographer bootstrap token was | 44 BOOTSTRAP_TOKEN_UPDATED = 13; // A new cryptographer bootstrap token was |
45 // generated. | 45 // generated. |
46 } | 46 } |
47 | 47 |
48 // See content/public/common/page_transition_types.h for detailed | 48 // See ui/base/page_transition_types.h for detailed information on the |
49 // information on the values of PageTransition and | 49 // values of PageTransition and PageTransitionRedirectType below. |
50 // PageTransitionRedirectType below. | |
51 | 50 |
52 // Types of transitions between pages. | 51 // Types of transitions between pages. |
53 enum PageTransition { | 52 enum PageTransition { |
54 LINK = 0; | 53 LINK = 0; |
55 TYPED = 1; | 54 TYPED = 1; |
56 AUTO_BOOKMARK = 2; | 55 AUTO_BOOKMARK = 2; |
57 AUTO_SUBFRAME = 3; | 56 AUTO_SUBFRAME = 3; |
58 MANUAL_SUBFRAME = 4; | 57 MANUAL_SUBFRAME = 4; |
59 GENERATED = 5; | 58 GENERATED = 5; |
60 AUTO_TOPLEVEL = 6; | 59 AUTO_TOPLEVEL = 6; |
(...skipping 93 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
154 // user opted to sync a different set of datatypes. | 153 // user opted to sync a different set of datatypes. |
155 GU_TRIGGER = 12; // The client is in 'normal' mode. It may have several | 154 GU_TRIGGER = 12; // The client is in 'normal' mode. It may have several |
156 // reasons for requesting an update. See the per-type | 155 // reasons for requesting an update. See the per-type |
157 // GetUpdateTriggers message for more details. | 156 // GetUpdateTriggers message for more details. |
158 RETRY = 13; // A retry GU to pick up updates missed by last GU due to | 157 RETRY = 13; // A retry GU to pick up updates missed by last GU due to |
159 // replication delay, missing hints, etc. | 158 // replication delay, missing hints, etc. |
160 PROGRAMMATIC = 14; // A GU to programmatically enable/disable a | 159 PROGRAMMATIC = 14; // A GU to programmatically enable/disable a |
161 // datatype, often due to error handling. | 160 // datatype, often due to error handling. |
162 } | 161 } |
163 } | 162 } |
OLD | NEW |