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

Side by Side Diff: ios/chrome/browser/share_extension/share_extension_service.h

Issue 1861593005: Convert //ios from scoped_ptr to std::unique_ptr. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Add header 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 unified diff | Download patch
OLDNEW
1 // Copyright 2016 The Chromium Authors. All rights reserved. 1 // Copyright 2016 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef IOS_INTERNAL_CHROME_BROWSER_SHARE_EXTENSION_SHARE_EXTENSION_SERVICE_H_ 5 #ifndef IOS_INTERNAL_CHROME_BROWSER_SHARE_EXTENSION_SHARE_EXTENSION_SERVICE_H_
6 #define IOS_INTERNAL_CHROME_BROWSER_SHARE_EXTENSION_SHARE_EXTENSION_SERVICE_H_ 6 #define IOS_INTERNAL_CHROME_BROWSER_SHARE_EXTENSION_SHARE_EXTENSION_SERVICE_H_
7 7
8 #include "base/memory/scoped_ptr.h" 8 #include <memory>
noyau (Ping after 24h) 2016/04/07 13:34:05 Apparently not needed.
9
9 #include "components/bookmarks/browser/base_bookmark_model_observer.h" 10 #include "components/bookmarks/browser/base_bookmark_model_observer.h"
10 #include "components/keyed_service/core/keyed_service.h" 11 #include "components/keyed_service/core/keyed_service.h"
11 #include "ios/chrome/browser/reading_list/reading_list_model_observer.h" 12 #include "ios/chrome/browser/reading_list/reading_list_model_observer.h"
12 13
13 namespace bookmarks { 14 namespace bookmarks {
14 class BookmarkModel; 15 class BookmarkModel;
15 } 16 }
16 17
17 namespace ios { 18 namespace ios {
18 class ChromeBrowserState; 19 class ChromeBrowserState;
(...skipping 24 matching lines...) Expand all
43 44
44 ReadingListModel* reading_list_model_; // not owned. 45 ReadingListModel* reading_list_model_; // not owned.
45 bool reading_list_model_loaded_; 46 bool reading_list_model_loaded_;
46 bookmarks::BookmarkModel* bookmark_model_; // not owned; 47 bookmarks::BookmarkModel* bookmark_model_; // not owned;
47 bool bookmark_model_loaded_; 48 bool bookmark_model_loaded_;
48 49
49 DISALLOW_COPY_AND_ASSIGN(ShareExtensionService); 50 DISALLOW_COPY_AND_ASSIGN(ShareExtensionService);
50 }; 51 };
51 52
52 #endif // IOS_INTERNAL_CHROME_BROWSER_SHARE_EXTENSION_SHARE_EXTENSION_SERVICE_H _ 53 #endif // IOS_INTERNAL_CHROME_BROWSER_SHARE_EXTENSION_SHARE_EXTENSION_SERVICE_H _
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698