| OLD | NEW |
| (Empty) | |
| 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 |
| 3 // found in the LICENSE file. |
| 4 |
| 5 #ifndef BLIMP_CLIENT_CORE_CONTENTS_BLIMP_CONTENTS_MANAGER_H_ |
| 6 #define BLIMP_CLIENT_CORE_CONTENTS_BLIMP_CONTENTS_MANAGER_H_ |
| 7 |
| 8 #include "blimp/client/core/contents/blimp_contents_impl.h" |
| 9 |
| 10 namespace blimp { |
| 11 namespace client { |
| 12 |
| 13 // BlimpContentsManager does the real work of creating BlimpContentsImpl, and |
| 14 // then passes the ownership to the caller. It also owns the observers to |
| 15 // monitor the life time of the contents it creates. |
| 16 class BlimpContentsManager { |
| 17 public: |
| 18 BlimpContentsManager(); |
| 19 ~BlimpContentsManager(); |
| 20 |
| 21 std::unique_ptr<BlimpContentsImpl> CreateBlimpContents(); |
| 22 |
| 23 // The caller can query the contents through its id. |
| 24 BlimpContentsImpl* GetBlimpContents(int id); |
| 25 |
| 26 private: |
| 27 class BlimpContentsDeletionObserver; |
| 28 friend class BlimpContentsDeletionObserver; |
| 29 |
| 30 // When creating the BlimpContentsImpl, an id is created for the content. |
| 31 int CreateBlimpContentsId(); |
| 32 |
| 33 // When a BlimpContentsImpl is destroyed, its observer is able to retrieve the |
| 34 // id, and use this to destroy the observer entry from the observer_map_. |
| 35 void EraseObserverFromMap(int id); |
| 36 base::WeakPtr<BlimpContentsManager> GetWeakPtr(); |
| 37 |
| 38 // BlimpContentsManager owns the BlimpContentsDeletionObserver for the |
| 39 // contents it creates, with the content id being the key to help manage the |
| 40 // lifetime of the observers. |
| 41 std::map<int, std::unique_ptr<BlimpContentsDeletionObserver>> observer_map_; |
| 42 |
| 43 base::WeakPtrFactory<BlimpContentsManager> weak_ptr_factory_; |
| 44 |
| 45 DISALLOW_COPY_AND_ASSIGN(BlimpContentsManager); |
| 46 }; |
| 47 |
| 48 } // namespace client |
| 49 } // namespace blimp |
| 50 |
| 51 #endif // BLIMP_CLIENT_CORE_CONTENTS_BLIMP_CONTENTS_MANAGER_H_ |
| OLD | NEW |