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

Unified Diff: runtime/vm/message.h

Issue 25646004: Add Dart_PostPriority function to dart_api, and use it in runAsync to schedule immediate events in … (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: More cleanup Created 7 years, 2 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
« no previous file with comments | « runtime/vm/dart_api_impl.cc ('k') | runtime/vm/message.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/message.h
diff --git a/runtime/vm/message.h b/runtime/vm/message.h
index 4b894174ef55a984deab91b00b483b370d8fafc1..3536ff210add6ebd5d38c19590baf3532ebbc4fe 100644
--- a/runtime/vm/message.h
+++ b/runtime/vm/message.h
@@ -16,11 +16,8 @@ class Message {
public:
typedef enum {
kNormalPriority = 0, // Deliver message when idle.
- kOOBPriority = 1, // Deliver message asap.
-
- // Iteration.
- kFirstPriority = 0,
- kNumPriorities = 2,
+ kFirstPriority = 1, // Deliver message asap.
Lasse Reichstein Nielsen 2013/10/03 08:53:41 asap->ASAP.
floitsch 2013/10/03 09:04:26 Maybe just: Deliver message when idle before norma
+ kOOBPriority = 2, // Deliver message OOB.
Lasse Reichstein Nielsen 2013/10/03 08:53:41 Spell out "Out-of-band", and say what it means. Ho
} Priority;
// A port number which is never used.
« no previous file with comments | « runtime/vm/dart_api_impl.cc ('k') | runtime/vm/message.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698