Index: chrome/test/chromedriver/chrome/chrome_desktop_impl.h |
diff --git a/chrome/test/chromedriver/chrome/chrome_desktop_impl.h b/chrome/test/chromedriver/chrome/chrome_desktop_impl.h |
index 9b121186480604de597edd4079b96d62e6ffb8b3..9f9b98f083b07455bcf586d6a9947bd4dbe94bbf 100644 |
--- a/chrome/test/chromedriver/chrome/chrome_desktop_impl.h |
+++ b/chrome/test/chromedriver/chrome/chrome_desktop_impl.h |
@@ -57,11 +57,15 @@ class ChromeDesktopImpl : public ChromeImpl { |
const base::CommandLine& command() const; |
+ int GetNetworkConnection() const; |
+ void SetNetworkConnection(const int& network_connection); |
samuong
2016/06/29 18:37:54
"const int&" seems needlessly complex, is there an
roisinmcl
2016/06/29 19:45:00
Done.
|
+ |
private: |
base::Process process_; |
base::CommandLine command_; |
base::ScopedTempDir user_data_dir_; |
base::ScopedTempDir extension_dir_; |
+ int network_connection_; |
// Lazily initialized, may be null. |
std::unique_ptr<AutomationExtension> automation_extension_; |