| OLD | NEW |
| 1 // Copyright 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 "services/navigation/content_client/browser_main_parts.h" | 5 #include "services/navigation/content_client/browser_main_parts.h" |
| 6 | 6 |
| 7 #include "base/message_loop/message_loop.h" | 7 #include "base/run_loop.h" |
| 8 #include "content/public/common/mojo_shell_connection.h" | 8 #include "content/public/common/mojo_shell_connection.h" |
| 9 #include "content/shell/browser/shell_browser_context.h" | 9 #include "content/shell/browser/shell_browser_context.h" |
| 10 #include "content/shell/browser/shell_net_log.h" | 10 #include "content/shell/browser/shell_net_log.h" |
| 11 #include "services/navigation/navigation.h" | 11 #include "services/navigation/navigation.h" |
| 12 #include "ui/views/mus/window_manager_connection.h" | 12 #include "ui/views/mus/window_manager_connection.h" |
| 13 #include "ui/views/test/test_views_delegate.h" | 13 #include "ui/views/test/test_views_delegate.h" |
| 14 | 14 |
| 15 namespace navigation { | 15 namespace navigation { |
| 16 | 16 |
| 17 BrowserMainParts::BrowserMainParts( | 17 BrowserMainParts::BrowserMainParts( |
| (...skipping 17 matching lines...) Expand all Loading... |
| 35 browser_context_.reset( | 35 browser_context_.reset( |
| 36 new content::ShellBrowserContext(false, net_log_.get())); | 36 new content::ShellBrowserContext(false, net_log_.get())); |
| 37 } | 37 } |
| 38 | 38 |
| 39 void BrowserMainParts::PostMainMessageLoopRun() { | 39 void BrowserMainParts::PostMainMessageLoopRun() { |
| 40 views_delegate_.reset(); | 40 views_delegate_.reset(); |
| 41 browser_context_.reset(); | 41 browser_context_.reset(); |
| 42 } | 42 } |
| 43 | 43 |
| 44 bool BrowserMainParts::MainMessageLoopRun(int* result_code) { | 44 bool BrowserMainParts::MainMessageLoopRun(int* result_code) { |
| 45 base::MessageLoop::current()->Run(); | 45 base::RunLoop().Run(); |
| 46 return true; | 46 return true; |
| 47 } | 47 } |
| 48 | 48 |
| 49 } // namespace navigation | 49 } // namespace navigation |
| OLD | NEW |