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

Unified Diff: components/ui_devtools/devtools_base_agent.h

Issue 2899783002: Move DevTools out of ash and turn it to a component. (Closed)
Patch Set: add README.md Created 3 years, 6 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 | « components/ui_devtools/README.md ('k') | components/ui_devtools/devtools_client.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/ui_devtools/devtools_base_agent.h
diff --git a/components/ui_devtools/devtools_base_agent.h b/components/ui_devtools/devtools_base_agent.h
index 0b66d8254368657476ce58288fe2f3ad706757a7..da1c6fe374f520cf53b90e1f79ba3003cdd9ae3c 100644
--- a/components/ui_devtools/devtools_base_agent.h
+++ b/components/ui_devtools/devtools_base_agent.h
@@ -7,8 +7,7 @@
#include "components/ui_devtools/Protocol.h"
-namespace ui {
-namespace devtools {
+namespace ui_devtools {
class UiDevToolsAgent {
public:
@@ -39,12 +38,12 @@ class UiDevToolsBaseAgent : public UiDevToolsAgent,
// Common methods between all generated Backends, subclasses may
// choose to override them (but not necessary).
- ui::devtools::protocol::Response enable() override {
- return ui::devtools::protocol::Response::OK();
+ ui_devtools::protocol::Response enable() override {
+ return ui_devtools::protocol::Response::OK();
};
- ui::devtools::protocol::Response disable() override {
- return ui::devtools::protocol::Response::OK();
+ ui_devtools::protocol::Response disable() override {
+ return ui_devtools::protocol::Response::OK();
};
protected:
@@ -59,7 +58,6 @@ class UiDevToolsBaseAgent : public UiDevToolsAgent,
DISALLOW_COPY_AND_ASSIGN(UiDevToolsBaseAgent);
};
-} // namespace devtools
-} // namespace ui
+} // namespace ui_devtools
#endif // COMPONENTS_UI_DEVTOOLS_DEVTOOLS_BASE_AGENT_H_
« no previous file with comments | « components/ui_devtools/README.md ('k') | components/ui_devtools/devtools_client.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698