Commit 51b20fa3 authored by Scott Violet's avatar Scott Violet Committed by Commit Bot

weblayer: moves SessionService

from weblayer/browser to weblayer/browser/persistence

BUG=none
TEST=none

Change-Id: I57a953381066548f3cd02e6858b5ee40f63437ee
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2050936Reviewed-by: default avatarEvan Stade <estade@chromium.org>
Commit-Queue: Scott Violet <sky@chromium.org>
Cr-Commit-Position: refs/heads/master@{#740450}
parent a992a511
...@@ -125,10 +125,10 @@ jumbo_static_library("weblayer_lib") { ...@@ -125,10 +125,10 @@ jumbo_static_library("weblayer_lib") {
"browser/persistence/browser_persistence_common.h", "browser/persistence/browser_persistence_common.h",
"browser/persistence/minimal_browser_persister.cc", "browser/persistence/minimal_browser_persister.cc",
"browser/persistence/minimal_browser_persister.h", "browser/persistence/minimal_browser_persister.h",
"browser/persistence/session_service.cc",
"browser/persistence/session_service.h",
"browser/profile_impl.cc", "browser/profile_impl.cc",
"browser/profile_impl.h", "browser/profile_impl.h",
"browser/session_service.cc",
"browser/session_service.h",
"browser/ssl_error_controller_client.cc", "browser/ssl_error_controller_client.cc",
"browser/ssl_error_controller_client.h", "browser/ssl_error_controller_client.h",
"browser/ssl_host_state_delegate_impl.cc", "browser/ssl_host_state_delegate_impl.cc",
......
...@@ -11,8 +11,8 @@ ...@@ -11,8 +11,8 @@
#include "components/base32/base32.h" #include "components/base32/base32.h"
#include "content/public/browser/browser_context.h" #include "content/public/browser/browser_context.h"
#include "weblayer/browser/persistence/minimal_browser_persister.h" #include "weblayer/browser/persistence/minimal_browser_persister.h"
#include "weblayer/browser/persistence/session_service.h"
#include "weblayer/browser/profile_impl.h" #include "weblayer/browser/profile_impl.h"
#include "weblayer/browser/session_service.h"
#include "weblayer/browser/tab_impl.h" #include "weblayer/browser/tab_impl.h"
#include "weblayer/common/weblayer_paths.h" #include "weblayer/common/weblayer_paths.h"
#include "weblayer/public/browser_observer.h" #include "weblayer/public/browser_observer.h"
......
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
// Use of this source code is governed by a BSD-style license that can be // Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file. // found in the LICENSE file.
#include "weblayer/browser/session_service.h" #include "weblayer/browser/persistence/session_service.h"
#include <stddef.h> #include <stddef.h>
......
...@@ -2,8 +2,8 @@ ...@@ -2,8 +2,8 @@
// Use of this source code is governed by a BSD-style license that can be // Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file. // found in the LICENSE file.
#ifndef WEBLAYER_BROWSER_SESSION_SERVICE_H_ #ifndef WEBLAYER_BROWSER_PERSISTENCE_SESSION_SERVICE_H_
#define WEBLAYER_BROWSER_SESSION_SERVICE_H_ #define WEBLAYER_BROWSER_PERSISTENCE_SESSION_SERVICE_H_
#include <stddef.h> #include <stddef.h>
...@@ -130,4 +130,4 @@ class SessionService : public sessions::CommandStorageManagerDelegate, ...@@ -130,4 +130,4 @@ class SessionService : public sessions::CommandStorageManagerDelegate,
} // namespace weblayer } // namespace weblayer
#endif // WEBLAYER_BROWSER_SESSION_SERVICE_H_ #endif // WEBLAYER_BROWSER_PERSISTENCE_SESSION_SERVICE_H_
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
// Use of this source code is governed by a BSD-style license that can be // Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file. // found in the LICENSE file.
#include "weblayer/browser/session_service.h" #include "weblayer/browser/persistence/session_service.h"
#include "base/files/file_path.h" #include "base/files/file_path.h"
#include "base/path_service.h" #include "base/path_service.h"
......
...@@ -29,8 +29,8 @@ ...@@ -29,8 +29,8 @@
#include "weblayer/browser/i18n_util.h" #include "weblayer/browser/i18n_util.h"
#include "weblayer/browser/isolated_world_ids.h" #include "weblayer/browser/isolated_world_ids.h"
#include "weblayer/browser/navigation_controller_impl.h" #include "weblayer/browser/navigation_controller_impl.h"
#include "weblayer/browser/persistence/session_service.h"
#include "weblayer/browser/profile_impl.h" #include "weblayer/browser/profile_impl.h"
#include "weblayer/browser/session_service.h"
#include "weblayer/public/download_delegate.h" #include "weblayer/public/download_delegate.h"
#include "weblayer/public/fullscreen_delegate.h" #include "weblayer/public/fullscreen_delegate.h"
#include "weblayer/public/new_tab_delegate.h" #include "weblayer/public/new_tab_delegate.h"
......
...@@ -174,7 +174,7 @@ test("weblayer_browsertests") { ...@@ -174,7 +174,7 @@ test("weblayer_browsertests") {
# setup for. Persistence related tests for Java will be done as # setup for. Persistence related tests for Java will be done as
# integration tests. # integration tests.
"../browser/persistence/minimal_browser_persister_browsertest.cc", "../browser/persistence/minimal_browser_persister_browsertest.cc",
"../browser/session_service_browsertest.cc", "../browser/persistence/session_service_browsertest.cc",
] ]
} }
} }
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment