Chromium Code Reviews| Index: chrome/test/chromedriver/chrome/web_view_impl.cc |
| diff --git a/chrome/test/chromedriver/chrome/web_view_impl.cc b/chrome/test/chromedriver/chrome/web_view_impl.cc |
| index 23b13a61c15b17d7015dca77e604b88a39ff154d..2d5d1e0aa59dde76f2e5dd7089928628285bd3c8 100644 |
| --- a/chrome/test/chromedriver/chrome/web_view_impl.cc |
| +++ b/chrome/test/chromedriver/chrome/web_view_impl.cc |
| @@ -191,6 +191,8 @@ Status WebViewImpl::Load(const std::string& url) { |
| Status WebViewImpl::Reload() { |
| base::DictionaryValue params; |
| + // TODO(toyoshim): Check if this ignoreCache shouldn't be changed for |
|
dgozman
2016/04/06 15:44:19
This is a public API usage as well.
Takashi Toyoshima
2016/04/08 04:50:54
Acknowledged.
|
| + // DevTools protocol. |
| params.SetBoolean("ignoreCache", false); |
| return client_->SendCommand("Page.reload", params); |
| } |