OLD | NEW |
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" | |
9 #include "components/bookmarks/browser/base_bookmark_model_observer.h" | 8 #include "components/bookmarks/browser/base_bookmark_model_observer.h" |
10 #include "components/keyed_service/core/keyed_service.h" | 9 #include "components/keyed_service/core/keyed_service.h" |
11 #include "ios/chrome/browser/reading_list/reading_list_model_observer.h" | 10 #include "ios/chrome/browser/reading_list/reading_list_model_observer.h" |
12 | 11 |
13 namespace bookmarks { | 12 namespace bookmarks { |
14 class BookmarkModel; | 13 class BookmarkModel; |
15 } | 14 } |
16 | 15 |
17 namespace ios { | 16 namespace ios { |
18 class ChromeBrowserState; | 17 class ChromeBrowserState; |
(...skipping 24 matching lines...) Expand all Loading... |
43 | 42 |
44 ReadingListModel* reading_list_model_; // not owned. | 43 ReadingListModel* reading_list_model_; // not owned. |
45 bool reading_list_model_loaded_; | 44 bool reading_list_model_loaded_; |
46 bookmarks::BookmarkModel* bookmark_model_; // not owned; | 45 bookmarks::BookmarkModel* bookmark_model_; // not owned; |
47 bool bookmark_model_loaded_; | 46 bool bookmark_model_loaded_; |
48 | 47 |
49 DISALLOW_COPY_AND_ASSIGN(ShareExtensionService); | 48 DISALLOW_COPY_AND_ASSIGN(ShareExtensionService); |
50 }; | 49 }; |
51 | 50 |
52 #endif // IOS_INTERNAL_CHROME_BROWSER_SHARE_EXTENSION_SHARE_EXTENSION_SERVICE_H
_ | 51 #endif // IOS_INTERNAL_CHROME_BROWSER_SHARE_EXTENSION_SHARE_EXTENSION_SERVICE_H
_ |
OLD | NEW |