| OLD | NEW |
| 1 // Copyright (c) 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 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/browser_process.h" | 5 #include "chrome/browser/browser_process.h" |
| 6 #include "chrome/browser/signin/token_revoker_test_utils.h" | 6 #include "chrome/browser/signin/token_revoker_test_utils.h" |
| 7 #include "content/public/test/test_utils.h" | 7 #include "content/public/test/test_utils.h" |
| 8 #include "google_apis/gaia/gaia_auth_fetcher.h" | 8 #include "google_apis/gaia/gaia_auth_fetcher.h" |
| 9 #include "google_apis/gaia/gaia_constants.h" | 9 #include "google_apis/gaia/gaia_constants.h" |
| 10 | 10 |
| 11 namespace token_revoker_test_utils { | 11 namespace token_revoker_test_utils { |
| (...skipping 13 matching lines...) Expand all Loading... |
| 25 message_loop_runner_ = new content::MessageLoopRunner; | 25 message_loop_runner_ = new content::MessageLoopRunner; |
| 26 message_loop_runner_->Run(); | 26 message_loop_runner_->Run(); |
| 27 } | 27 } |
| 28 | 28 |
| 29 void RefreshTokenRevoker::OnOAuth2RevokeTokenCompleted() { | 29 void RefreshTokenRevoker::OnOAuth2RevokeTokenCompleted() { |
| 30 DVLOG(1) << "TokenRevoker OnOAuth2RevokeTokenCompleted"; | 30 DVLOG(1) << "TokenRevoker OnOAuth2RevokeTokenCompleted"; |
| 31 message_loop_runner_->Quit(); | 31 message_loop_runner_->Quit(); |
| 32 } | 32 } |
| 33 | 33 |
| 34 } // namespace token_revoker_test_utils | 34 } // namespace token_revoker_test_utils |
| OLD | NEW |