Index: chrome/android/java/src/org/chromium/chrome/browser/ntp/RecentlyClosedTab.java |
diff --git a/chrome/android/java/src/org/chromium/chrome/browser/ntp/RecentlyClosedTab.java b/chrome/android/java/src/org/chromium/chrome/browser/ntp/RecentlyClosedTab.java |
new file mode 100644 |
index 0000000000000000000000000000000000000000..25b4bdb7b637f35fed11a93f7288029aae171f1d |
--- /dev/null |
+++ b/chrome/android/java/src/org/chromium/chrome/browser/ntp/RecentlyClosedTab.java |
@@ -0,0 +1,20 @@ |
+// Copyright 2017 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. |
+ |
+package org.chromium.chrome.browser.ntp; |
+ |
+/** |
+ * Represents a recently closed tab. |
+ */ |
+public class RecentlyClosedTab { |
+ public final int id; |
+ public final String title; |
+ public final String url; |
+ |
+ public RecentlyClosedTab(int id, String title, String url) { |
+ this.id = id; |
+ this.title = title; |
+ this.url = url; |
+ } |
+} |