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

Side by Side Diff: chrome/browser/sync/protocol/session_specifics.proto

Issue 3387010: Refresh sync.proto. (Closed) Base URL: http://src.chromium.org/git/chromium.git
Patch Set: Fixed build_commit_command.cc Created 10 years, 3 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
« no previous file with comments | « chrome/browser/sync/protocol/encryption.proto ('k') | chrome/browser/sync/protocol/sync.proto » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2010 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 datatype extension for sessions. 5 // Sync protocol datatype extension for sessions.
6 6
7 syntax = "proto2"; 7 syntax = "proto2";
8 8
9 // option optimize_for = LITE_RUNTIME; 9 // option optimize_for = LITE_RUNTIME;
10 10
(...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after
55 optional string virtual_url = 2; 55 optional string virtual_url = 2;
56 // The referring URL, which can be empty. 56 // The referring URL, which can be empty.
57 optional string referrer = 3; 57 optional string referrer = 3;
58 // The title of the page. 58 // The title of the page.
59 optional string title = 4; 59 optional string title = 4;
60 // Content state is an opaque blob created by WebKit that represents the 60 // Content state is an opaque blob created by WebKit that represents the
61 // state of the page. This includes form entries and scroll position for each 61 // state of the page. This includes form entries and scroll position for each
62 // frame. 62 // frame.
63 optional string state = 5; 63 optional string state = 5;
64 // Types of transitions between pages. 64 // Types of transitions between pages.
65 enum PageTransition{ 65 enum PageTransition {
66 LINK = 0; 66 LINK = 0;
67 TYPED = 1; 67 TYPED = 1;
68 AUTO_BOOKMARK = 2; 68 AUTO_BOOKMARK = 2;
69 AUTO_SUBFRAME = 3; 69 AUTO_SUBFRAME = 3;
70 MANUAL_SUBFRAME = 4; 70 MANUAL_SUBFRAME = 4;
71 GENERATED = 5; 71 GENERATED = 5;
72 START_PAGE = 6; 72 START_PAGE = 6;
73 FORM_SUBMIT = 7; 73 FORM_SUBMIT = 7;
74 RELOAD = 8; 74 RELOAD = 8;
75 KEYWORD = 9; 75 KEYWORD = 9;
76 KEYWORD_GENERATED = 10; 76 KEYWORD_GENERATED = 10;
77 CHAIN_START = 12; 77 CHAIN_START = 12;
78 CHAIN_END = 13; 78 CHAIN_END = 13;
79 } 79 }
80 // These qualifiers further define the transition. 80 // These qualifiers further define the transition.
81 enum PageTransitionQualifier { 81 enum PageTransitionQualifier {
82 CLIENT_REDIRECT = 1; 82 CLIENT_REDIRECT = 1;
83 SERVER_REDIRECT = 2; 83 SERVER_REDIRECT = 2;
84 } 84 }
85 optional PageTransition page_transition = 6 [default = TYPED]; 85 optional PageTransition page_transition = 6 [default = TYPED];
86 optional PageTransitionQualifier navigation_qualifier = 7; 86 optional PageTransitionQualifier navigation_qualifier = 7;
87 } 87 }
88 88
89 extend EntitySpecifics { 89 extend EntitySpecifics {
90 optional SessionSpecifics session = 50119; 90 optional SessionSpecifics session = 50119;
91 } 91 }
OLDNEW
« no previous file with comments | « chrome/browser/sync/protocol/encryption.proto ('k') | chrome/browser/sync/protocol/sync.proto » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698