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

Side by Side Diff: mojo/dart/embedder/dart_debugger.cc

Issue 1199483004: Roll dart forward (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 5 years, 6 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 unified diff | Download patch
« no previous file with comments | « mojo/dart/embedder/dart_debugger.h ('k') | sky/engine/core/script/dart_debugger.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2015 The Chromium Authors. All rights reserved. 1 // Copyright 2015 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 "mojo/dart/embedder/dart_debugger.h" 5 #include "mojo/dart/embedder/dart_debugger.h"
6 #include "dart/runtime/include/dart_api.h" 6 #include "dart/runtime/include/dart_api.h"
7 #include "dart/runtime/include/dart_debugger_api.h"
8 #include "dart/runtime/include/dart_native_api.h" 7 #include "dart/runtime/include/dart_native_api.h"
8 #include "dart/runtime/include/dart_tools_api.h"
9 9
10 10
11 namespace mojo { 11 namespace mojo {
12 namespace dart { 12 namespace dart {
13 13
14 void DartDebuggerIsolate::MessageLoop() { 14 void DartDebuggerIsolate::MessageLoop() {
15 MonitorLocker ml(&monitor_); 15 MonitorLocker ml(&monitor_);
16 // Request notification on isolate messages. This allows us to 16 // Request notification on isolate messages. This allows us to
17 // respond to vm service messages while at breakpoint. 17 // respond to vm service messages while at breakpoint.
18 Dart_SetMessageNotifyCallback(DartDebugger::NotifyIsolate); 18 Dart_SetMessageNotifyCallback(DartDebugger::NotifyIsolate);
(...skipping 111 matching lines...) Expand 10 before | Expand all | Expand 10 after
130 } 130 }
131 NOTREACHED(); 131 NOTREACHED();
132 } 132 }
133 133
134 base::Lock* DartDebugger::lock_ = nullptr; 134 base::Lock* DartDebugger::lock_ = nullptr;
135 std::vector<std::unique_ptr<DartDebuggerIsolate>>* DartDebugger::isolates_ = 135 std::vector<std::unique_ptr<DartDebuggerIsolate>>* DartDebugger::isolates_ =
136 nullptr; 136 nullptr;
137 137
138 } // namespace dart 138 } // namespace dart
139 } // namespace mojo 139 } // namespace mojo
OLDNEW
« no previous file with comments | « mojo/dart/embedder/dart_debugger.h ('k') | sky/engine/core/script/dart_debugger.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698