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

Side by Side Diff: runtime/platform/thread_win.h

Issue 9264006: Add additional include guard in platform specific .h files (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 11 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 | « runtime/platform/thread_macos.h ('k') | no next file » | 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 PLATFORM_THREAD_WIN_H_ 5 #ifndef PLATFORM_THREAD_WIN_H_
6 #define PLATFORM_THREAD_WIN_H_ 6 #define PLATFORM_THREAD_WIN_H_
7 7
8 #if !defined(PLATFORM_THREAD_H_)
9 #error Do not include thread_win.h directly; use thread.h instead.
10 #endif
11
8 #include "platform/globals.h" 12 #include "platform/globals.h"
9 13
10 namespace dart { 14 namespace dart {
11 15
12 class ThreadData { 16 class ThreadData {
13 private: 17 private:
14 ThreadData() {} 18 ThreadData() {}
15 ~ThreadData() {} 19 ~ThreadData() {}
16 20
17 uintptr_t thread_handle_; 21 uintptr_t thread_handle_;
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after
52 56
53 friend class Monitor; 57 friend class Monitor;
54 58
55 DISALLOW_ALLOCATION(); 59 DISALLOW_ALLOCATION();
56 DISALLOW_COPY_AND_ASSIGN(MonitorData); 60 DISALLOW_COPY_AND_ASSIGN(MonitorData);
57 }; 61 };
58 62
59 } // namespace dart 63 } // namespace dart
60 64
61 #endif // PLATFORM_THREAD_WIN_H_ 65 #endif // PLATFORM_THREAD_WIN_H_
OLDNEW
« no previous file with comments | « runtime/platform/thread_macos.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698