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

Unified Diff: components/sessions/core/tab_restore_service_client.cc

Issue 1343833002: Abstract content::SessionStorageNamespace from core TabRestore code (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@extension_tab_helper
Patch Set: Response to review Created 5 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « components/sessions/core/tab_restore_service_client.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/sessions/core/tab_restore_service_client.cc
diff --git a/components/sessions/core/tab_restore_service_client.cc b/components/sessions/core/tab_restore_service_client.cc
new file mode 100644
index 0000000000000000000000000000000000000000..78e5057843ec15950276c4e61e6ff9d147807402
--- /dev/null
+++ b/components/sessions/core/tab_restore_service_client.cc
@@ -0,0 +1,21 @@
+// Copyright 2015 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.
+
+#include "components/sessions/core/tab_restore_service_client.h"
+
+namespace sessions {
+
+TabClientData::~TabClientData() {}
+
+TabRestoreServiceClient::~TabRestoreServiceClient() {}
+
+scoped_ptr<TabClientData>
+TabRestoreServiceClient::GetTabClientDataForWebContents(
+ content::WebContents* web_contents) {
+ return nullptr;
+}
+
+void TabRestoreServiceClient::OnTabRestored(const GURL& url) {}
+
+} // namespace sessions
« no previous file with comments | « components/sessions/core/tab_restore_service_client.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698