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

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

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.h
diff --git a/content/browser/debugger/devtools_client_host.h b/content/public/browser/devtools/devtools_client_host.h
similarity index 89%
rename from content/browser/debugger/devtools_client_host.h
rename to content/public/browser/devtools/devtools_client_host.h
index 16e4d89113ba314fd38483b7b08f1a9cd607fad7..1ae26e46dab8201066f62c7802a6248e8b50a01d 100644
--- a/content/browser/debugger/devtools_client_host.h
+++ b/content/public/browser/devtools/devtools_client_host.h
@@ -2,8 +2,8 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
-#ifndef CONTENT_BROWSER_DEBUGGER_DEVTOOLS_CLIENT_HOST_H_
-#define CONTENT_BROWSER_DEBUGGER_DEVTOOLS_CLIENT_HOST_H_
+#ifndef CONTENT_PUBLIC_BROWSER_DEVTOOLS_DEVTOOLS_CLIENT_HOST_H_
+#define CONTENT_PUBLIC_BROWSER_DEVTOOLS_DEVTOOLS_CLIENT_HOST_H_
#pragma once
#include <string>
@@ -19,6 +19,8 @@ class Message;
class RenderViewHost;
class TabContents;
+namespace content {
+
// Describes interface for managing devtools clients from browser process. There
// are currently two types of clients: devtools windows and TCP socket
// debuggers.
@@ -74,4 +76,6 @@ class CONTENT_EXPORT DevToolsClientHost {
DISALLOW_COPY_AND_ASSIGN(DevToolsClientHost);
jam 2011/11/21 21:16:04 nit: not needed
yurys 2011/11/30 15:49:43 Done.
};
-#endif // CONTENT_BROWSER_DEBUGGER_DEVTOOLS_CLIENT_HOST_H_
+} // namespace content
+
+#endif // CONTENT_PUBLIC_BROWSER_DEVTOOLS_DEVTOOLS_CLIENT_HOST_H_

Powered by Google App Engine
This is Rietveld 408576698