forked from chromium/chromium
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Delete MessageLoop::Run()/RunUntilIdle().
These methods are deprecated and no longer used in Chrome. base::RunLoop must be used instead. e.g.: Replace message_loop.Run(); With base::RunLoop run_loop; // Pass |run_loop.QuitClosure()| to an object/task // that will quit the RunLoop when appropriate. run_loop.Run(); Replace message_loop.RunUntilIdle(); With base::RunLoop().RunUntilIdle(); BUG=616447 Review-Url: https://codereview.chromium.org/2356383003 Cr-Commit-Position: refs/heads/master@{#421068}
- Loading branch information
Showing
2 changed files
with
0 additions
and
35 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters