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 BLIMP_CLIENT_CORE_CONTENTS_BLIMP_CONTENTS_MANAGER_H_ | 5 #ifndef BLIMP_CLIENT_CORE_CONTENTS_BLIMP_CONTENTS_MANAGER_H_ |
6 #define BLIMP_CLIENT_CORE_CONTENTS_BLIMP_CONTENTS_MANAGER_H_ | 6 #define BLIMP_CLIENT_CORE_CONTENTS_BLIMP_CONTENTS_MANAGER_H_ |
7 | 7 |
8 #include "blimp/client/core/contents/blimp_contents_impl.h" | 8 #include "blimp/client/core/contents/blimp_contents_impl.h" |
9 | 9 |
10 namespace blimp { | 10 namespace blimp { |
11 namespace client { | 11 namespace client { |
12 | 12 |
| 13 class TabControlFeature; |
| 14 |
13 // BlimpContentsManager does the real work of creating BlimpContentsImpl, and | 15 // BlimpContentsManager does the real work of creating BlimpContentsImpl, and |
14 // then passes the ownership to the caller. It also owns the observers to | 16 // then passes the ownership to the caller. It also owns the observers to |
15 // monitor the life time of the contents it creates. | 17 // monitor the life time of the contents it creates. |
16 class BlimpContentsManager { | 18 class BlimpContentsManager { |
17 public: | 19 public: |
18 BlimpContentsManager(); | 20 BlimpContentsManager(); |
19 ~BlimpContentsManager(); | 21 ~BlimpContentsManager(); |
20 | 22 |
21 std::unique_ptr<BlimpContentsImpl> CreateBlimpContents(); | 23 std::unique_ptr<BlimpContentsImpl> CreateBlimpContents( |
| 24 TabControlFeature* tab_control_feature); |
22 | 25 |
23 // The caller can query the contents through its id. | 26 // The caller can query the contents through its id. |
24 BlimpContentsImpl* GetBlimpContents(int id); | 27 BlimpContentsImpl* GetBlimpContents(int id); |
25 | 28 |
26 private: | 29 private: |
27 class BlimpContentsDeletionObserver; | 30 class BlimpContentsDeletionObserver; |
28 friend class BlimpContentsDeletionObserver; | 31 friend class BlimpContentsDeletionObserver; |
29 | 32 |
30 // When creating the BlimpContentsImpl, an id is created for the content. | 33 // When creating the BlimpContentsImpl, an id is created for the content. |
31 int CreateBlimpContentsId(); | 34 int CreateBlimpContentsId(); |
(...skipping 10 matching lines...) Expand all Loading... |
42 | 45 |
43 base::WeakPtrFactory<BlimpContentsManager> weak_ptr_factory_; | 46 base::WeakPtrFactory<BlimpContentsManager> weak_ptr_factory_; |
44 | 47 |
45 DISALLOW_COPY_AND_ASSIGN(BlimpContentsManager); | 48 DISALLOW_COPY_AND_ASSIGN(BlimpContentsManager); |
46 }; | 49 }; |
47 | 50 |
48 } // namespace client | 51 } // namespace client |
49 } // namespace blimp | 52 } // namespace blimp |
50 | 53 |
51 #endif // BLIMP_CLIENT_CORE_CONTENTS_BLIMP_CONTENTS_MANAGER_H_ | 54 #endif // BLIMP_CLIENT_CORE_CONTENTS_BLIMP_CONTENTS_MANAGER_H_ |
OLD | NEW |