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

Unified Diff: chrome/test/chromedriver/stub_devtools_client.h

Issue 12848005: [chromedriver] Separate stuff of chrome from chromedriver. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Address comments and fix compile error on mac. Created 7 years, 9 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 | « chrome/test/chromedriver/stub_chrome.cc ('k') | chrome/test/chromedriver/stub_devtools_client.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/test/chromedriver/stub_devtools_client.h
diff --git a/chrome/test/chromedriver/stub_devtools_client.h b/chrome/test/chromedriver/stub_devtools_client.h
deleted file mode 100644
index 306d2d787bf054deb6fc4b9bdaab27d5b26c5fe2..0000000000000000000000000000000000000000
--- a/chrome/test/chromedriver/stub_devtools_client.h
+++ /dev/null
@@ -1,42 +0,0 @@
-// Copyright (c) 2013 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_TEST_CHROMEDRIVER_STUB_DEVTOOLS_CLIENT_H_
-#define CHROME_TEST_CHROMEDRIVER_STUB_DEVTOOLS_CLIENT_H_
-
-#include <list>
-#include <string>
-
-#include "base/compiler_specific.h"
-#include "base/memory/scoped_ptr.h"
-#include "chrome/test/chromedriver/devtools_client.h"
-
-namespace base {
-class DictionaryValue;
-}
-
-class Status;
-
-class StubDevToolsClient : public DevToolsClient {
- public:
- StubDevToolsClient();
- virtual ~StubDevToolsClient();
-
- // Overridden from DevToolsClient:
- virtual Status ConnectIfNecessary() OVERRIDE;
- virtual Status SendCommand(const std::string& method,
- const base::DictionaryValue& params) OVERRIDE;
- virtual Status SendCommandAndGetResult(
- const std::string& method,
- const base::DictionaryValue& params,
- scoped_ptr<base::DictionaryValue>* result) OVERRIDE;
- virtual void AddListener(DevToolsEventListener* listener) OVERRIDE;
- virtual Status HandleEventsUntil(
- const ConditionalFunc& conditional_func) OVERRIDE;
-
- protected:
- std::list<DevToolsEventListener*> listeners_;
-};
-
-#endif // CHROME_TEST_CHROMEDRIVER_STUB_DEVTOOLS_CLIENT_H_
« no previous file with comments | « chrome/test/chromedriver/stub_chrome.cc ('k') | chrome/test/chromedriver/stub_devtools_client.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698