Chromium Code Reviews| Index: chrome/test/chromedriver/chrome/chrome_desktop_impl.cc |
| diff --git a/chrome/test/chromedriver/chrome/chrome_desktop_impl.cc b/chrome/test/chromedriver/chrome/chrome_desktop_impl.cc |
| index 30ab4213fba69ec2234e1035e1c0dfc75b7be6f8..296524adf47703efa3ff18923445df321cfb1b2f 100644 |
| --- a/chrome/test/chromedriver/chrome/chrome_desktop_impl.cc |
| +++ b/chrome/test/chromedriver/chrome/chrome_desktop_impl.cc |
| @@ -201,3 +201,12 @@ Status ChromeDesktopImpl::QuitImpl() { |
| const base::CommandLine& ChromeDesktopImpl::command() const { |
| return command_; |
| } |
| + |
| +int ChromeDesktopImpl::GetNetworkConnectionValue() const { |
|
samuong
2016/06/28 23:23:40
nit: remove "Value" suffix
If you feel "GetNetwor
roisinmcl
2016/06/29 17:55:13
Done.
|
| + return network_connection_; |
| +} |
| + |
| +void ChromeDesktopImpl::SetNetworkConnectionValue( |
|
samuong
2016/06/28 23:23:40
nit: remove "Value" suffix
roisinmcl
2016/06/29 17:55:13
Done.
|
| + const int& network_connection) { |
| + network_connection_ = network_connection; |
| +} |