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

Side by Side Diff: runtime/bin/eventhandler_win.h

Issue 462353002: - Do not use platform/thread.h (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | runtime/bin/thread_android.cc » ('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 (c) 2012, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
2 // for details. All rights reserved. Use of this source code is governed by a 2 // for details. All rights reserved. Use of this source code is governed by a
3 // BSD-style license that can be found in the LICENSE file. 3 // BSD-style license that can be found in the LICENSE file.
4 4
5 #ifndef BIN_EVENTHANDLER_WIN_H_ 5 #ifndef BIN_EVENTHANDLER_WIN_H_
6 #define BIN_EVENTHANDLER_WIN_H_ 6 #define BIN_EVENTHANDLER_WIN_H_
7 7
8 #if !defined(BIN_EVENTHANDLER_H_) 8 #if !defined(BIN_EVENTHANDLER_H_)
9 #error Do not include eventhandler_win.h directly; use eventhandler.h instead. 9 #error Do not include eventhandler_win.h directly; use eventhandler.h instead.
10 #endif 10 #endif
11 11
12 #include <winsock2.h> 12 #include <winsock2.h>
13 #include <ws2tcpip.h> 13 #include <ws2tcpip.h>
14 #include <mswsock.h> 14 #include <mswsock.h>
15 15
16 #include "bin/builtin.h" 16 #include "bin/builtin.h"
17 #include "platform/thread.h" 17 #include "bin/thread.h"
18 18
19 19
20 namespace dart { 20 namespace dart {
21 namespace bin { 21 namespace bin {
22 22
23 // Forward declarations. 23 // Forward declarations.
24 class EventHandlerImplementation; 24 class EventHandlerImplementation;
25 class Handle; 25 class Handle;
26 class FileHandle; 26 class FileHandle;
27 class SocketHandle; 27 class SocketHandle;
(...skipping 513 matching lines...) Expand 10 before | Expand all | Expand 10 after
541 541
542 TimeoutQueue timeout_queue_; // Time for next timeout. 542 TimeoutQueue timeout_queue_; // Time for next timeout.
543 bool shutdown_; 543 bool shutdown_;
544 HANDLE completion_port_; 544 HANDLE completion_port_;
545 }; 545 };
546 546
547 } // namespace bin 547 } // namespace bin
548 } // namespace dart 548 } // namespace dart
549 549
550 #endif // BIN_EVENTHANDLER_WIN_H_ 550 #endif // BIN_EVENTHANDLER_WIN_H_
OLDNEW
« no previous file with comments | « no previous file | runtime/bin/thread_android.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698