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

Unified Diff: chrome/browser/devtools/devtools_manager_delegate_impl.h

Issue 251653003: Introduces DevToolsManagerDelegate. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix CloudPrintProxyPolicyStartupTest failure Created 6 years, 7 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
Index: chrome/browser/devtools/devtools_manager_delegate_impl.h
diff --git a/chrome/browser/devtools/devtools_manager_delegate_impl.h b/chrome/browser/devtools/devtools_manager_delegate_impl.h
new file mode 100644
index 0000000000000000000000000000000000000000..271a53582a0c6fc7a73e8409db4943641d6aa373
--- /dev/null
+++ b/chrome/browser/devtools/devtools_manager_delegate_impl.h
@@ -0,0 +1,29 @@
+// Copyright 2014 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 CHROME_BROWSER_DEVTOOLS_DEVTOOLS_MANAGER_DELEGATE_IMPL_H_
+#define CHROME_BROWSER_DEVTOOLS_DEVTOOLS_MANAGER_DELEGATE_IMPL_H_
+
+#include "base/compiler_specific.h"
+#include "base/macros.h"
+#include "content/public/browser/devtools_manager_delegate.h"
+
+namespace content {
+class DevToolsAgentHost;
+}
+
+class DevToolsManagerDelegateImpl : public content::DevToolsManagerDelegate {
jam 2014/05/12 15:01:23 nit: the convention for chrome implementing an int
horo 2014/05/12 16:21:48 Done.
+ public:
+ DevToolsManagerDelegateImpl();
+ virtual ~DevToolsManagerDelegateImpl();
+
+ // content::DevToolsManagerDelegate overrides:
+ virtual void Inspect(content::BrowserContext* browser_context,
+ content::DevToolsAgentHost* agent_host) OVERRIDE;
+
+ private:
+ DISALLOW_COPY_AND_ASSIGN(DevToolsManagerDelegateImpl);
+};
+
+#endif // CHROME_BROWSER_DEVTOOLS_DEVTOOLS_MANAGER_DELEGATE_IMPL_H_

Powered by Google App Engine
This is Rietveld 408576698