| 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 ASH_COMMON_DEVTOOLS_ASH_DEVTOOLS_DOM_AGENT_H_ | 5 #ifndef ASH_DEVTOOLS_ASH_DEVTOOLS_DOM_AGENT_H_ |
| 6 #define ASH_COMMON_DEVTOOLS_ASH_DEVTOOLS_DOM_AGENT_H_ | 6 #define ASH_DEVTOOLS_ASH_DEVTOOLS_DOM_AGENT_H_ |
| 7 | 7 |
| 8 #include "ash/common/wm_shell.h" | 8 #include "ash/wm_shell.h" |
| 9 #include "base/compiler_specific.h" | 9 #include "base/compiler_specific.h" |
| 10 #include "base/observer_list.h" | 10 #include "base/observer_list.h" |
| 11 #include "components/ui_devtools/DOM.h" | 11 #include "components/ui_devtools/DOM.h" |
| 12 #include "components/ui_devtools/devtools_base_agent.h" | 12 #include "components/ui_devtools/devtools_base_agent.h" |
| 13 #include "ui/aura/window_observer.h" | 13 #include "ui/aura/window_observer.h" |
| 14 #include "ui/views/view.h" | 14 #include "ui/views/view.h" |
| 15 #include "ui/views/view_observer.h" | 15 #include "ui/views/view_observer.h" |
| 16 #include "ui/views/widget/widget.h" | 16 #include "ui/views/widget/widget.h" |
| 17 #include "ui/views/widget/widget_observer.h" | 17 #include "ui/views/widget/widget_observer.h" |
| 18 #include "ui/views/widget/widget_removals_observer.h" | 18 #include "ui/views/widget/widget_removals_observer.h" |
| (...skipping 126 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 145 NodeIdToViewMap node_id_to_view_map_; | 145 NodeIdToViewMap node_id_to_view_map_; |
| 146 | 146 |
| 147 base::ObserverList<AshDevToolsDOMAgentObserver> observers_; | 147 base::ObserverList<AshDevToolsDOMAgentObserver> observers_; |
| 148 | 148 |
| 149 DISALLOW_COPY_AND_ASSIGN(AshDevToolsDOMAgent); | 149 DISALLOW_COPY_AND_ASSIGN(AshDevToolsDOMAgent); |
| 150 }; | 150 }; |
| 151 | 151 |
| 152 } // namespace devtools | 152 } // namespace devtools |
| 153 } // namespace ash | 153 } // namespace ash |
| 154 | 154 |
| 155 #endif // ASH_COMMON_DEVTOOLS_ASH_DEVTOOLS_DOM_AGENT_H_ | 155 #endif // ASH_DEVTOOLS_ASH_DEVTOOLS_DOM_AGENT_H_ |
| OLD | NEW |