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

Unified Diff: content/browser/debugger/devtools_sanity_unittest.h

Issue 7309011: Remove dependencies on extensions from content/browser/debugger. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Merge to head. Created 9 years, 5 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: content/browser/debugger/devtools_sanity_unittest.h
diff --git a/content/browser/debugger/devtools_sanity_unittest.h b/content/browser/debugger/devtools_sanity_unittest.h
new file mode 100644
index 0000000000000000000000000000000000000000..0f444ba3f27dbccc88bca5262701c27e43314d92
--- /dev/null
+++ b/content/browser/debugger/devtools_sanity_unittest.h
@@ -0,0 +1,33 @@
+// Copyright (c) 2011 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 CONTENT_BROWSER_DEBUGGER_DEVTOOLS_SANITY_UNITTEST_H_
+#define CONTENT_BROWSER_DEBUGGER_DEVTOOLS_SANITY_UNITTEST_H_
+#pragma once
+
+#include <string>
+
+#include "base/task.h"
+#include "chrome/test/in_process_browser_test.h"
+
+class DevToolsWindow;
+class RenderViewHost;
+class TabContents;
+
+class DevToolsSanityTest : public InProcessBrowserTest {
+ public:
+ DevToolsSanityTest();
+
+ protected:
+ void RunTest(const std::string& test_name, const std::string& test_page);
+ void OpenDevToolsWindow(const std::string& test_page);
+ TabContents* GetInspectedTab();
+ void CloseDevToolsWindow();
+
+ TabContents* client_contents_;
+ DevToolsWindow* window_;
+ RenderViewHost* inspected_rvh_;
+};
+
+#endif // CONTENT_BROWSER_DEBUGGER_DEVTOOLS_SANITY_UNITTEST_H_
« no previous file with comments | « content/browser/debugger/devtools_protocol_handler.cc ('k') | content/browser/debugger/devtools_sanity_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698