Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(69)

Unified Diff: mojo/public/cpp/application/lib/application_runner_chromium.cc

Issue 506353002: Make HandleWatcher watch on the same thread if the thread is running a MessagePumpMojo. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« mojo/common/message_pump_mojo.cc ('K') | « mojo/public/cpp/application/DEPS ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: mojo/public/cpp/application/lib/application_runner_chromium.cc
diff --git a/mojo/public/cpp/application/lib/application_runner_chromium.cc b/mojo/public/cpp/application/lib/application_runner_chromium.cc
index 6f5764b8f3a6e1be0dea2a874e6863efd7091fd1..7176d045a225f06363069a921b994ab2a0d49878 100644
--- a/mojo/public/cpp/application/lib/application_runner_chromium.cc
+++ b/mojo/public/cpp/application/lib/application_runner_chromium.cc
@@ -6,7 +6,9 @@
#include "base/at_exit.h"
#include "base/command_line.h"
+#include "base/memory/scoped_ptr.h"
#include "base/message_loop/message_loop.h"
+#include "mojo/common/message_pump_mojo.h"
#include "mojo/public/cpp/application/application_delegate.h"
#include "mojo/public/cpp/application/application_impl.h"
@@ -21,13 +23,13 @@ void ApplicationImpl::Terminate() {
ApplicationRunnerChromium::ApplicationRunnerChromium(
ApplicationDelegate* delegate)
: delegate_(scoped_ptr<ApplicationDelegate>(delegate)),
- message_loop_type_(base::MessageLoop::TYPE_DEFAULT) {}
+ message_loop_type_(base::MessageLoop::TYPE_CUSTOM) {}
ApplicationRunnerChromium::~ApplicationRunnerChromium() {}
void ApplicationRunnerChromium::set_message_loop_type(
base::MessageLoop::Type type) {
- DCHECK_EQ(base::MessageLoop::TYPE_DEFAULT, message_loop_type_);
+ DCHECK_EQ(base::MessageLoop::TYPE_CUSTOM, message_loop_type_);
darin (slow to review) 2014/08/27 21:20:43 I don't understand this assertion. Why is it inval
yzshen1 2014/08/27 22:31:48 I honestly didn't think about it. :)
message_loop_type_ = type;
}
@@ -38,10 +40,16 @@ MojoResult ApplicationRunnerChromium::Run(MojoHandle shell_handle) {
#endif
{
- base::MessageLoop loop(message_loop_type_);
+ scoped_ptr<base::MessageLoop> loop;
+ if (message_loop_type_ == base::MessageLoop::TYPE_CUSTOM) {
+ loop.reset(new base::MessageLoop(common::MessagePumpMojo::Create()));
+ } else {
+ loop.reset(new base::MessageLoop(message_loop_type_));
+ }
+
ApplicationImpl impl(delegate_.get(),
MakeScopedHandle(MessagePipeHandle(shell_handle)));
- loop.Run();
+ loop->Run();
}
delegate_.reset();
return MOJO_RESULT_OK;
« mojo/common/message_pump_mojo.cc ('K') | « mojo/public/cpp/application/DEPS ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698