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

Side by Side Diff: chrome/test/chromedriver/chrome/chrome_impl.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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef CHROME_TEST_CHROMEDRIVER_CHROME_IMPL_H_ 5 #ifndef CHROME_TEST_CHROMEDRIVER_CHROME_CHROME_IMPL_H_
6 #define CHROME_TEST_CHROMEDRIVER_CHROME_IMPL_H_ 6 #define CHROME_TEST_CHROMEDRIVER_CHROME_CHROME_IMPL_H_
7 7
8 #include <list> 8 #include <list>
9 #include <map> 9 #include <map>
10 #include <string> 10 #include <string>
11 11
12 #include "base/compiler_specific.h" 12 #include "base/compiler_specific.h"
13 #include "base/memory/linked_ptr.h" 13 #include "base/memory/linked_ptr.h"
14 #include "base/memory/ref_counted.h" 14 #include "base/memory/ref_counted.h"
15 #include "chrome/test/chromedriver/chrome.h" 15 #include "chrome/test/chromedriver/chrome/chrome.h"
16 #include "chrome/test/chromedriver/chrome/web_view_delegate.h"
16 #include "chrome/test/chromedriver/net/sync_websocket_factory.h" 17 #include "chrome/test/chromedriver/net/sync_websocket_factory.h"
17 #include "chrome/test/chromedriver/web_view_delegate.h"
18 18
19 class JavaScriptDialogManager; 19 class JavaScriptDialogManager;
20 class Status; 20 class Status;
21 class URLRequestContextGetter; 21 class URLRequestContextGetter;
22 class WebView; 22 class WebView;
23 class WebViewImpl; 23 class WebViewImpl;
24 24
25 class ChromeImpl : public Chrome, public WebViewDelegate { 25 class ChromeImpl : public Chrome, public WebViewDelegate {
26 public: 26 public:
27 ChromeImpl(URLRequestContextGetter* context_getter, 27 ChromeImpl(URLRequestContextGetter* context_getter,
(...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after
81 }; 81 };
82 82
83 Status ParsePagesInfo(const std::string& data, 83 Status ParsePagesInfo(const std::string& data,
84 std::list<WebViewInfo>* info_list); 84 std::list<WebViewInfo>* info_list);
85 85
86 Status ParseVersionInfo(const std::string& data, 86 Status ParseVersionInfo(const std::string& data,
87 std::string* version); 87 std::string* version);
88 88
89 } // namespace internal 89 } // namespace internal
90 90
91 #endif // CHROME_TEST_CHROMEDRIVER_CHROME_IMPL_H_ 91 #endif // CHROME_TEST_CHROMEDRIVER_CHROME_CHROME_IMPL_H_
OLDNEW
« no previous file with comments | « chrome/test/chromedriver/chrome/chrome_finder_unittest.cc ('k') | chrome/test/chromedriver/chrome/chrome_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698