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

Unified Diff: chrome/browser/sync_file_system/local/sync_file_system_backend.h

Issue 2618393003: Remove ScopedVector from ContentBrowserClient. (Closed)
Patch Set: rebase 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/browser/sync_file_system/local/sync_file_system_backend.h
diff --git a/chrome/browser/sync_file_system/local/sync_file_system_backend.h b/chrome/browser/sync_file_system/local/sync_file_system_backend.h
index 753fcf41c1e536707df8fd74322e3a1eb852f9b3..2e471bb40ecfa8879bb087c46dc5e975e7bbbb08 100644
--- a/chrome/browser/sync_file_system/local/sync_file_system_backend.h
+++ b/chrome/browser/sync_file_system/local/sync_file_system_backend.h
@@ -7,6 +7,8 @@
#include <stdint.h>
+#include <memory>
+
#include "base/macros.h"
#include "chrome/browser/profiles/profile.h"
#include "chrome/browser/sync_file_system/sync_callbacks.h"
@@ -28,7 +30,7 @@ class SyncFileSystemBackend : public storage::FileSystemBackend {
explicit SyncFileSystemBackend(Profile* profile);
~SyncFileSystemBackend() override;
- static SyncFileSystemBackend* CreateForTesting();
+ static std::unique_ptr<SyncFileSystemBackend> CreateForTesting();
// FileSystemBackend overrides.
bool CanHandleType(storage::FileSystemType type) const override;

Powered by Google App Engine
This is Rietveld 408576698