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

Unified Diff: mojo/edk/system/awakable_list.h

Issue 1346383004: EDK: Remove MOJO_SYSTEM_IMPL_EXPORT, system_impl_export.h, etc. (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: Created 5 years, 3 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 | « mojo/edk/system/awakable.h ('k') | mojo/edk/system/channel.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: mojo/edk/system/awakable_list.h
diff --git a/mojo/edk/system/awakable_list.h b/mojo/edk/system/awakable_list.h
index a34a4820887a9fc177a891366d0492e2b780fb5b..e4d4b244e8233bdec9cb64f7de551ee5d7a85bc4 100644
--- a/mojo/edk/system/awakable_list.h
+++ b/mojo/edk/system/awakable_list.h
@@ -9,7 +9,6 @@
#include <vector>
-#include "mojo/edk/system/system_impl_export.h"
#include "mojo/public/c/system/types.h"
#include "mojo/public/cpp/system/macros.h"
@@ -19,14 +18,14 @@ namespace system {
class Awakable;
struct HandleSignalsState;
-// |AwakableList| tracks all the |Waiter|s that are waiting on a given
-// handle/|Dispatcher|. There should be a |AwakableList| for each handle that
-// can be waited on (in any way). In the simple case, the |AwakableList| is
-// owned by the |Dispatcher|, whereas in more complex cases it is owned by the
-// secondary object (see simple_dispatcher.* and the explanatory comment in
-// core.cc). This class is thread-unsafe (all concurrent access must be
-// protected by some lock).
-class MOJO_SYSTEM_IMPL_EXPORT AwakableList {
+// |AwakableList| tracks all the |Awakable|s (usually |Waiter|s) that are
+// waiting on a given handle/|Dispatcher|. There should be a |AwakableList| for
+// each handle that can be waited on (in any way). In the simple case, the
+// |AwakableList| is owned by the |Dispatcher|, whereas in more complex cases it
+// is owned by the secondary object (see simple_dispatcher.* and the explanatory
+// comment in core.cc). This class is thread-unsafe (all concurrent access must
+// be protected by some lock).
+class AwakableList {
public:
AwakableList();
~AwakableList();
« no previous file with comments | « mojo/edk/system/awakable.h ('k') | mojo/edk/system/channel.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698