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

Unified Diff: chrome/android/java/src/org/chromium/chrome/browser/ntp/RecentlyClosedTab.java

Issue 2610143002: Add RecentTabsPageTest (Closed)
Patch Set: Undo the prefs changes. Created 3 years, 11 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 side-by-side diff with in-line comments
Download patch
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;
+ }
+}

Powered by Google App Engine
This is Rietveld 408576698