| OLD | NEW |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 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 COMPONENTS_HTML_VIEWER_HTML_FRAME_TREE_MANAGER_H_ | 5 #ifndef COMPONENTS_HTML_VIEWER_HTML_FRAME_TREE_MANAGER_H_ |
| 6 #define COMPONENTS_HTML_VIEWER_HTML_FRAME_TREE_MANAGER_H_ | 6 #define COMPONENTS_HTML_VIEWER_HTML_FRAME_TREE_MANAGER_H_ |
| 7 | 7 |
| 8 #include <stdint.h> |
| 9 |
| 8 #include <map> | 10 #include <map> |
| 9 #include <set> | 11 #include <set> |
| 10 | 12 |
| 11 #include "base/basictypes.h" | 13 #include "base/macros.h" |
| 12 #include "base/memory/scoped_ptr.h" | 14 #include "base/memory/scoped_ptr.h" |
| 13 #include "base/memory/weak_ptr.h" | 15 #include "base/memory/weak_ptr.h" |
| 14 #include "base/observer_list.h" | 16 #include "base/observer_list.h" |
| 15 #include "components/web_view/public/interfaces/frame.mojom.h" | 17 #include "components/web_view/public/interfaces/frame.mojom.h" |
| 16 | 18 |
| 17 namespace blink { | 19 namespace blink { |
| 18 class WebView; | 20 class WebView; |
| 19 } | 21 } |
| 20 | 22 |
| 21 namespace mus { | 23 namespace mus { |
| (...skipping 117 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 139 base::ObserverList<HTMLFrameTreeManagerObserver> observers_; | 141 base::ObserverList<HTMLFrameTreeManagerObserver> observers_; |
| 140 | 142 |
| 141 base::WeakPtrFactory<HTMLFrameTreeManager> weak_factory_; | 143 base::WeakPtrFactory<HTMLFrameTreeManager> weak_factory_; |
| 142 | 144 |
| 143 DISALLOW_COPY_AND_ASSIGN(HTMLFrameTreeManager); | 145 DISALLOW_COPY_AND_ASSIGN(HTMLFrameTreeManager); |
| 144 }; | 146 }; |
| 145 | 147 |
| 146 } // namespace html_viewer | 148 } // namespace html_viewer |
| 147 | 149 |
| 148 #endif // COMPONENTS_HTML_VIEWER_HTML_FRAME_TREE_MANAGER_H_ | 150 #endif // COMPONENTS_HTML_VIEWER_HTML_FRAME_TREE_MANAGER_H_ |
| OLD | NEW |