| OLD | NEW |
| 1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2013 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 #include "chrome/browser/chromeos/login/oauth2_token_fetcher.h" | 5 #include "chrome/browser/chromeos/login/oauth2_token_fetcher.h" |
| 6 | 6 |
| 7 #include "base/logging.h" | 7 #include "base/logging.h" |
| 8 #include "base/string_util.h" | 8 #include "base/string_util.h" |
| 9 #include "chrome/browser/chromeos/cros/cros_library.h" | 9 #include "chrome/browser/chromeos/cros/cros_library.h" |
| 10 #include "chrome/browser/chromeos/cros/network_library.h" | 10 #include "chrome/browser/chromeos/cros/network_library.h" |
| (...skipping 81 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 92 BrowserThread::PostDelayedTask( | 92 BrowserThread::PostDelayedTask( |
| 93 BrowserThread::UI, FROM_HERE, task, | 93 BrowserThread::UI, FROM_HERE, task, |
| 94 base::TimeDelta::FromMilliseconds(kRequestRestartDelay)); | 94 base::TimeDelta::FromMilliseconds(kRequestRestartDelay)); |
| 95 return; | 95 return; |
| 96 } | 96 } |
| 97 LOG(INFO) << "Unrecoverable error or retry count max reached."; | 97 LOG(INFO) << "Unrecoverable error or retry count max reached."; |
| 98 error_handler.Run(); | 98 error_handler.Run(); |
| 99 } | 99 } |
| 100 | 100 |
| 101 } // namespace chromeos | 101 } // namespace chromeos |
| OLD | NEW |