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

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

Issue 1870793002: Convert //chrome/browser/chromeos from scoped_ptr to std::unique_ptr (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 4 years, 8 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.h
diff --git a/chrome/browser/chromeos/file_system_provider/registry_interface.h b/chrome/browser/chromeos/file_system_provider/registry_interface.h
index 3ef80f78d5bacdcf5bd42bfa6813c0620d167641..ff34b5b12a4e189582d15765fb83d1411744b97d 100644
--- a/chrome/browser/chromeos/file_system_provider/registry_interface.h
+++ b/chrome/browser/chromeos/file_system_provider/registry_interface.h
@@ -5,11 +5,11 @@
#ifndef CHROME_BROWSER_CHROMEOS_FILE_SYSTEM_PROVIDER_REGISTRY_INTERFACE_H_
#define CHROME_BROWSER_CHROMEOS_FILE_SYSTEM_PROVIDER_REGISTRY_INTERFACE_H_
+#include <memory>
#include <string>
#include <vector>
#include "base/files/file_path.h"
-#include "base/memory/scoped_ptr.h"
#include "chrome/browser/chromeos/file_system_provider/provided_file_system_info.h"
#include "chrome/browser/chromeos/file_system_provider/watcher.h"
@@ -50,7 +50,7 @@ class RegistryInterface {
// Restores from preferences file systems mounted previously by the
// |extension_id| providing extension. The returned list should be used to
// remount them.
- virtual scoped_ptr<RestoredFileSystems> RestoreFileSystems(
+ virtual std::unique_ptr<RestoredFileSystems> RestoreFileSystems(
const std::string& extension_id) = 0;
// Updates a tag for the specified watcher.

Powered by Google App Engine
This is Rietveld 408576698