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

Unified Diff: chrome/service/cloud_print/connector_settings.h

Issue 1899083002: Convert //chrome from scoped_ptr to std::unique_ptr (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: . 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/service/cloud_print/connector_settings.h
diff --git a/chrome/service/cloud_print/connector_settings.h b/chrome/service/cloud_print/connector_settings.h
index 2b20b3cebedff6118a08bbf749ca8d54ad96ad1f..f8a14d229a2e71156d936b45140b170ec67065ff 100644
--- a/chrome/service/cloud_print/connector_settings.h
+++ b/chrome/service/cloud_print/connector_settings.h
@@ -5,12 +5,12 @@
#ifndef CHROME_SERVICE_CLOUD_PRINT_CONNECTOR_SETTINGS_H_
#define CHROME_SERVICE_CLOUD_PRINT_CONNECTOR_SETTINGS_H_
+#include <memory>
#include <set>
#include <string>
#include "base/gtest_prod_util.h"
#include "base/macros.h"
-#include "base/memory/scoped_ptr.h"
#include "url/gurl.h"
class ServiceProcessPrefs;
@@ -91,7 +91,7 @@ class ConnectorSettings {
Printers printers_;
// Print system settings.
- scoped_ptr<base::DictionaryValue> print_system_settings_;
+ std::unique_ptr<base::DictionaryValue> print_system_settings_;
DISALLOW_COPY_AND_ASSIGN(ConnectorSettings);
};

Powered by Google App Engine
This is Rietveld 408576698