Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(122)

Unified Diff: ash/common/devtools/ash_devtools_css_agent.h

Issue 2734653002: chromeos: Move files in //ash/common to //ash (Closed)
Patch Set: fix a11y tests, fix docs Created 3 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « ash/common/devtools/OWNERS ('k') | ash/common/devtools/ash_devtools_css_agent.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ash/common/devtools/ash_devtools_css_agent.h
diff --git a/ash/common/devtools/ash_devtools_css_agent.h b/ash/common/devtools/ash_devtools_css_agent.h
deleted file mode 100644
index 84f645d2b940daf7a7d67efd7cd6e39145415f86..0000000000000000000000000000000000000000
--- a/ash/common/devtools/ash_devtools_css_agent.h
+++ /dev/null
@@ -1,57 +0,0 @@
-// Copyright 2016 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-#ifndef ASH_COMMON_DEVTOOLS_ASH_DEVTOOLS_CSS_AGENT_H_
-#define ASH_COMMON_DEVTOOLS_ASH_DEVTOOLS_CSS_AGENT_H_
-
-#include "ash/common/devtools/ash_devtools_dom_agent.h"
-#include "components/ui_devtools/CSS.h"
-#include "ui/views/widget/widget_observer.h"
-
-namespace ash {
-namespace devtools {
-
-class ASH_EXPORT AshDevToolsCSSAgent
- : public NON_EXPORTED_BASE(ui::devtools::UiDevToolsBaseAgent<
- ui::devtools::protocol::CSS::Metainfo>),
- public AshDevToolsDOMAgentObserver {
- public:
- explicit AshDevToolsCSSAgent(AshDevToolsDOMAgent* dom_agent);
- ~AshDevToolsCSSAgent() override;
-
- // CSS::Backend
- ui::devtools::protocol::Response enable() override;
- ui::devtools::protocol::Response disable() override;
- ui::devtools::protocol::Response getMatchedStylesForNode(
- int node_id,
- ui::devtools::protocol::Maybe<ui::devtools::protocol::CSS::CSSStyle>*
- inline_style) override;
- ui::devtools::protocol::Response setStyleTexts(
- std::unique_ptr<ui::devtools::protocol::Array<
- ui::devtools::protocol::CSS::StyleDeclarationEdit>> edits,
- std::unique_ptr<
- ui::devtools::protocol::Array<ui::devtools::protocol::CSS::CSSStyle>>*
- result) override;
-
- // AshDevToolsDOMAgentObserver
- void OnWindowBoundsChanged(WmWindow* window) override;
- void OnWidgetBoundsChanged(views::Widget* widget) override;
- void OnViewBoundsChanged(views::View* view) override;
-
- private:
- std::unique_ptr<ui::devtools::protocol::CSS::CSSStyle> GetStylesForNode(
- int node_id);
- void InvalidateStyleSheet(int node_id);
- bool GetBoundsForNodeId(int node_id, gfx::Rect* bounds);
- bool UpdateBounds(int node_id, const gfx::Rect& bounds);
-
- AshDevToolsDOMAgent* dom_agent_;
-
- DISALLOW_COPY_AND_ASSIGN(AshDevToolsCSSAgent);
-};
-
-} // namespace devtools
-} // namespace ash
-
-#endif // ASH_COMMON_DEVTOOLS_ASH_DEVTOOLS_CSS_AGENT_H_
« no previous file with comments | « ash/common/devtools/OWNERS ('k') | ash/common/devtools/ash_devtools_css_agent.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698