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

Side by Side Diff: third_party/WebKit/Source/core/html/parser/HTMLParserThread.h

Issue 1682423002: Remove WebWaitableEvent and replace it with WaitableEvent. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix android build Created 4 years, 10 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) 2013 Google Inc. All rights reserved. 2 * Copyright (C) 2013 Google Inc. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions are 5 * modification, are permitted provided that the following conditions are
6 * met: 6 * met:
7 * 7 *
8 * * Redistributions of source code must retain the above copyright 8 * * Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 9 * notice, this list of conditions and the following disclaimer.
10 * * Redistributions in binary form must reproduce the above 10 * * Redistributions in binary form must reproduce the above
(...skipping 14 matching lines...) Expand all
25 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 25 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
26 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 26 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
27 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 27 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
28 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 28 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
29 */ 29 */
30 30
31 #ifndef HTMLParserThread_h 31 #ifndef HTMLParserThread_h
32 #define HTMLParserThread_h 32 #define HTMLParserThread_h
33 33
34 #include "core/CoreExport.h" 34 #include "core/CoreExport.h"
35 #include "platform/WaitableEvent.h"
35 #include "platform/WebThreadSupportingGC.h" 36 #include "platform/WebThreadSupportingGC.h"
36 #include "wtf/Allocator.h" 37 #include "wtf/Allocator.h"
37 #include "wtf/Functional.h" 38 #include "wtf/Functional.h"
38 #include "wtf/OwnPtr.h" 39 #include "wtf/OwnPtr.h"
39 #include "wtf/PassOwnPtr.h" 40 #include "wtf/PassOwnPtr.h"
40 41
41 namespace blink { 42 namespace blink {
42 43
43 class WebWaitableEvent; 44 class WebWaitableEvent;
44 45
45 class CORE_EXPORT HTMLParserThread { 46 class CORE_EXPORT HTMLParserThread {
46 USING_FAST_MALLOC(HTMLParserThread); 47 USING_FAST_MALLOC(HTMLParserThread);
47 public: 48 public:
48 static void init(); 49 static void init();
49 static void shutdown(); 50 static void shutdown();
50 51
51 // It is an error to call shared() before init() or after shutdown(); 52 // It is an error to call shared() before init() or after shutdown();
52 static HTMLParserThread* shared(); 53 static HTMLParserThread* shared();
53 54
54 void postTask(PassOwnPtr<Closure>); 55 void postTask(PassOwnPtr<Closure>);
55 WebThread& platformThread(); 56 WebThread& platformThread();
56 bool isRunning(); 57 bool isRunning();
57 58
58 private: 59 private:
59 HTMLParserThread(); 60 HTMLParserThread();
60 ~HTMLParserThread(); 61 ~HTMLParserThread();
61 void setupHTMLParserThread(); 62 void setupHTMLParserThread();
62 void cleanupHTMLParserThread(WebWaitableEvent*); 63 void cleanupHTMLParserThread(WaitableEvent*);
63 64
64 OwnPtr<WebThreadSupportingGC> m_thread; 65 OwnPtr<WebThreadSupportingGC> m_thread;
65 }; 66 };
66 67
67 } // namespace blink 68 } // namespace blink
68 69
69 #endif // HTMLParserThread_h 70 #endif // HTMLParserThread_h
OLDNEW
« no previous file with comments | « content/child/blink_platform_impl.cc ('k') | third_party/WebKit/Source/core/html/parser/HTMLParserThread.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698