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

Unified Diff: chrome/browser/chromeos/file_system_provider/registry_interface.cc

Issue 661393002: [fsp] Separate logic for saving/restoring state to a separate class. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: C++11 features. Created 6 years, 2 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/browser/chromeos/file_system_provider/registry_interface.cc
diff --git a/chrome/browser/chromeos/file_system_provider/observed_entry.cc b/chrome/browser/chromeos/file_system_provider/registry_interface.cc
similarity index 54%
copy from chrome/browser/chromeos/file_system_provider/observed_entry.cc
copy to chrome/browser/chromeos/file_system_provider/registry_interface.cc
index 51d682d22d3a3dbd11afbaf4e5fba53ba07c0266..be64abc51f90bbbe8130acae662f4b2f99dad6bb 100644
--- a/chrome/browser/chromeos/file_system_provider/observed_entry.cc
+++ b/chrome/browser/chromeos/file_system_provider/registry_interface.cc
@@ -2,15 +2,18 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
-#include "chrome/browser/chromeos/file_system_provider/observed_entry.h"
+#include "chrome/browser/chromeos/file_system_provider/registry_interface.h"
namespace chromeos {
namespace file_system_provider {
-ObservedEntry::ObservedEntry() : recursive(false) {
+RegistryInterface::~RegistryInterface() {
}
-ObservedEntry::~ObservedEntry() {
+RegistryInterface::RestoredFileSystem::RestoredFileSystem() {
+}
+
+RegistryInterface::RestoredFileSystem::~RestoredFileSystem() {
}
} // namespace file_system_provider

Powered by Google App Engine
This is Rietveld 408576698