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

Unified Diff: content/public/browser/devtools/devtools_client_host.cc

Issue 8549022: Define DevTools content API (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Comments addressed Created 9 years, 1 month 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
Index: content/public/browser/devtools/devtools_client_host.cc
diff --git a/content/browser/debugger/devtools_client_host.cc b/content/public/browser/devtools/devtools_client_host.cc
similarity index 90%
rename from content/browser/debugger/devtools_client_host.cc
rename to content/public/browser/devtools/devtools_client_host.cc
index 3ff2c5496e3d2bac3b3369f78fb6a97dc27e41a2..e154c446eed085c373f01f4477aff12d844cf1dd 100644
--- a/content/browser/debugger/devtools_client_host.cc
+++ b/content/public/browser/devtools/devtools_client_host.cc
@@ -2,12 +2,15 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
+#include "content/public/browser/devtools/devtools_client_host.h"
+
#include <algorithm>
#include "base/lazy_instance.h"
#include "base/logging.h"
-#include "content/browser/debugger/devtools_client_host.h"
-#include "content/browser/debugger/devtools_manager.h"
+#include "content/public/browser/devtools/devtools_manager.h"
+
+namespace content {
typedef std::vector<DevToolsClientHost*> DevToolsClientHostList;
namespace {
@@ -53,3 +56,5 @@ void DevToolsClientHost::NotifyCloseListener() {
close_listener_ = NULL;
}
}
+
+} // namespace content

Powered by Google App Engine
This is Rietveld 408576698