| 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_CSS_AGENT_H_ | 5 #ifndef ASH_DEVTOOLS_ASH_DEVTOOLS_CSS_AGENT_H_ |
| 6 #define ASH_COMMON_DEVTOOLS_ASH_DEVTOOLS_CSS_AGENT_H_ | 6 #define ASH_DEVTOOLS_ASH_DEVTOOLS_CSS_AGENT_H_ |
| 7 | 7 |
| 8 #include "ash/common/devtools/ash_devtools_dom_agent.h" | 8 #include "ash/devtools/ash_devtools_dom_agent.h" |
| 9 #include "components/ui_devtools/CSS.h" | 9 #include "components/ui_devtools/CSS.h" |
| 10 #include "ui/views/widget/widget_observer.h" | 10 #include "ui/views/widget/widget_observer.h" |
| 11 | 11 |
| 12 namespace ash { | 12 namespace ash { |
| 13 namespace devtools { | 13 namespace devtools { |
| 14 | 14 |
| 15 class ASH_EXPORT AshDevToolsCSSAgent | 15 class ASH_EXPORT AshDevToolsCSSAgent |
| 16 : public NON_EXPORTED_BASE(ui::devtools::UiDevToolsBaseAgent< | 16 : public NON_EXPORTED_BASE(ui::devtools::UiDevToolsBaseAgent< |
| 17 ui::devtools::protocol::CSS::Metainfo>), | 17 ui::devtools::protocol::CSS::Metainfo>), |
| 18 public AshDevToolsDOMAgentObserver { | 18 public AshDevToolsDOMAgentObserver { |
| (...skipping 28 matching lines...) Expand all Loading... |
| 47 bool UpdateBounds(int node_id, const gfx::Rect& bounds); | 47 bool UpdateBounds(int node_id, const gfx::Rect& bounds); |
| 48 | 48 |
| 49 AshDevToolsDOMAgent* dom_agent_; | 49 AshDevToolsDOMAgent* dom_agent_; |
| 50 | 50 |
| 51 DISALLOW_COPY_AND_ASSIGN(AshDevToolsCSSAgent); | 51 DISALLOW_COPY_AND_ASSIGN(AshDevToolsCSSAgent); |
| 52 }; | 52 }; |
| 53 | 53 |
| 54 } // namespace devtools | 54 } // namespace devtools |
| 55 } // namespace ash | 55 } // namespace ash |
| 56 | 56 |
| 57 #endif // ASH_COMMON_DEVTOOLS_ASH_DEVTOOLS_CSS_AGENT_H_ | 57 #endif // ASH_DEVTOOLS_ASH_DEVTOOLS_CSS_AGENT_H_ |
| OLD | NEW |