| Index: chrome/browser/ui/webui/chromeos/login/gaia_screen_handler.cc
|
| diff --git a/chrome/browser/ui/webui/chromeos/login/gaia_screen_handler.cc b/chrome/browser/ui/webui/chromeos/login/gaia_screen_handler.cc
|
| index 417055dfeae32f1af39efd786fd77fb46a5c30a8..13ae45f552d0491de8ee05a43ca82b4f69f42f3a 100644
|
| --- a/chrome/browser/ui/webui/chromeos/login/gaia_screen_handler.cc
|
| +++ b/chrome/browser/ui/webui/chromeos/login/gaia_screen_handler.cc
|
| @@ -6,6 +6,7 @@
|
|
|
| #include "ash/common/system/chromeos/devicetype_utils.h"
|
| #include "base/bind.h"
|
| +#include "base/callback.h"
|
| #include "base/guid.h"
|
| #include "base/logging.h"
|
| #include "base/metrics/histogram.h"
|
| @@ -163,7 +164,7 @@ void ClearDnsCache(IOThread* io_thread) {
|
| if (browser_shutdown::IsTryingToQuit())
|
| return;
|
|
|
| - io_thread->ClearHostCache();
|
| + io_thread->ClearHostCache(base::Callback<bool(const std::string&)>());
|
| }
|
|
|
| void PushFrontIMIfNotExists(const std::string& input_method,
|
|
|