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

Unified Diff: chrome/browser/chromeos/file_system_provider/registry.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.h
diff --git a/chrome/browser/chromeos/file_system_provider/registry.h b/chrome/browser/chromeos/file_system_provider/registry.h
index 209e1045a631d567f0f89e43bd48209509a988a8..a02bcf60a35d62a7a036f132ab221cda1bb7f146 100644
--- a/chrome/browser/chromeos/file_system_provider/registry.h
+++ b/chrome/browser/chromeos/file_system_provider/registry.h
@@ -5,10 +5,10 @@
#ifndef CHROME_BROWSER_CHROMEOS_FILE_SYSTEM_PROVIDER_REGISTRY_H_
#define CHROME_BROWSER_CHROMEOS_FILE_SYSTEM_PROVIDER_REGISTRY_H_
+#include <memory>
#include <string>
#include "base/macros.h"
-#include "base/memory/scoped_ptr.h"
#include "chrome/browser/chromeos/file_system_provider/registry_interface.h"
#include "chrome/browser/chromeos/file_system_provider/watcher.h"
@@ -49,7 +49,7 @@ class Registry : public RegistryInterface {
const Watchers& watchers) override;
void ForgetFileSystem(const std::string& extension_id,
const std::string& file_system_id) override;
- scoped_ptr<RestoredFileSystems> RestoreFileSystems(
+ std::unique_ptr<RestoredFileSystems> RestoreFileSystems(
const std::string& extension_id) override;
void UpdateWatcherTag(const ProvidedFileSystemInfo& file_system_info,
const Watcher& watcher) override;

Powered by Google App Engine
This is Rietveld 408576698