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

Side by Side Diff: third_party/WebKit/Source/wtf/ThreadingWin.cpp

Issue 2050123002: Remove OwnPtr from Blink. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: First attempt to land. Created 4 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
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2007, 2008 Apple Inc. All rights reserved. 2 * Copyright (C) 2007, 2008 Apple Inc. All rights reserved.
3 * Copyright (C) 2009 Google Inc. All rights reserved. 3 * Copyright (C) 2009 Google Inc. All rights reserved.
4 * Copyright (C) 2009 Torch Mobile, Inc. All rights reserved. 4 * Copyright (C) 2009 Torch Mobile, Inc. All rights reserved.
5 * 5 *
6 * Redistribution and use in source and binary forms, with or without 6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions 7 * modification, are permitted provided that the following conditions
8 * are met: 8 * are met:
9 * 9 *
10 * 1. Redistributions of source code must retain the above copyright 10 * 1. Redistributions of source code must retain the above copyright
(...skipping 73 matching lines...) Expand 10 before | Expand all | Expand 10 after
84 */ 84 */
85 85
86 #include "wtf/Threading.h" 86 #include "wtf/Threading.h"
87 87
88 #if OS(WIN) 88 #if OS(WIN)
89 89
90 #include "wtf/CurrentTime.h" 90 #include "wtf/CurrentTime.h"
91 #include "wtf/DateMath.h" 91 #include "wtf/DateMath.h"
92 #include "wtf/HashMap.h" 92 #include "wtf/HashMap.h"
93 #include "wtf/MathExtras.h" 93 #include "wtf/MathExtras.h"
94 #include "wtf/OwnPtr.h"
95 #include "wtf/PassOwnPtr.h"
96 #include "wtf/ThreadSpecific.h" 94 #include "wtf/ThreadSpecific.h"
97 #include "wtf/ThreadingPrimitives.h" 95 #include "wtf/ThreadingPrimitives.h"
98 #include "wtf/WTFThreadData.h" 96 #include "wtf/WTFThreadData.h"
99 #include "wtf/dtoa/double-conversion.h" 97 #include "wtf/dtoa/double-conversion.h"
100 #include <errno.h> 98 #include <errno.h>
101 #include <process.h> 99 #include <process.h>
102 #include <windows.h> 100 #include <windows.h>
103 101
104 namespace WTF { 102 namespace WTF {
105 103
(...skipping 301 matching lines...) Expand 10 before | Expand all | Expand 10 after
407 405
408 void willCreateThread() 406 void willCreateThread()
409 { 407 {
410 s_threadCreated = true; 408 s_threadCreated = true;
411 } 409 }
412 #endif 410 #endif
413 411
414 } // namespace WTF 412 } // namespace WTF
415 413
416 #endif // OS(WIN) 414 #endif // OS(WIN)
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/wtf/ThreadingPthreads.cpp ('k') | third_party/WebKit/Source/wtf/Vector.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698