| Index: chrome/browser/printing/cloud_print/privet_notifications.h
|
| diff --git a/chrome/browser/printing/cloud_print/privet_notifications.h b/chrome/browser/printing/cloud_print/privet_notifications.h
|
| index a4a94d94ecfdb7cd80188eec5538419aa1e2e369..df5a8d781bdfb08388cb005b204ce81fb54aee6f 100644
|
| --- a/chrome/browser/printing/cloud_print/privet_notifications.h
|
| +++ b/chrome/browser/printing/cloud_print/privet_notifications.h
|
| @@ -8,6 +8,7 @@
|
| #include <map>
|
| #include <string>
|
|
|
| +#include "base/memory/scoped_ptr.h"
|
| #include "chrome/browser/notifications/notification_delegate.h"
|
| #include "chrome/browser/printing/cloud_print/privet_device_lister.h"
|
| #include "chrome/browser/printing/cloud_print/privet_http.h"
|
| @@ -75,7 +76,7 @@ class PrivetNotificationsListener {
|
| scoped_ptr<PrivetHTTPClient> privet_http;
|
| };
|
|
|
| - typedef std::map<std::string, linked_ptr<DeviceContext> > DeviceContextMap;
|
| + using DeviceContextMap = std::map<std::string, scoped_ptr<DeviceContext>>;
|
|
|
| void CreateInfoOperation(scoped_ptr<PrivetHTTPClient> http_client);
|
| void OnPrivetInfoDone(DeviceContext* device,
|
|
|