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

Unified Diff: chrome/android/java/src/org/chromium/chrome/browser/tabmodel/document/document_tab_model_info.proto

Issue 796633002: Move some DocumentTabModel files upstream (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Temporary findbugs workaround Created 6 years 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
Index: chrome/android/java/src/org/chromium/chrome/browser/tabmodel/document/document_tab_model_info.proto
diff --git a/chrome/android/java/src/org/chromium/chrome/browser/tabmodel/document/document_tab_model_info.proto b/chrome/android/java/src/org/chromium/chrome/browser/tabmodel/document/document_tab_model_info.proto
new file mode 100644
index 0000000000000000000000000000000000000000..1fe0aee28e3183ad67118e4287801c06f66688f0
--- /dev/null
+++ b/chrome/android/java/src/org/chromium/chrome/browser/tabmodel/document/document_tab_model_info.proto
@@ -0,0 +1,23 @@
+// Copyright 2014 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.
+//
+// Protocol buffer definition for a database of DocumentActivity state.
+
+syntax = "proto2";
+
+package org.chromium.chrome.browser.tabmodel.document;
+
+option java_outer_classname = "DocumentTabModelInfo";
+option java_package = "org.chromium.chrome.browser.tabmodel.document";
+
+message DocumentEntry {
+ // Next ID to use: 6
+ optional bool can_go_back = 4;
+ required int32 tab_id = 5;
+}
+
+message DocumentList {
+ // Next ID to use: 2
+ repeated DocumentEntry entries = 1;
+}

Powered by Google App Engine
This is Rietveld 408576698