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

Side by Side Diff: Source/core/dom/custom/CustomElementMicrotaskImportStep.h

Issue 1304043002: Make classes and structures in core/dom fast-allocated. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 5 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
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 5 * modification, are permitted provided that the following conditions
6 * are met: 6 * are met:
7 * 7 *
8 * 1. Redistributions of source code must retain the above copyright 8 * 1. 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 * 2. Redistributions in binary form must reproduce the above copyright 10 * 2. Redistributions in binary form must reproduce the above copyright
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
43 43
44 class CustomElementSyncMicrotaskQueue; 44 class CustomElementSyncMicrotaskQueue;
45 class HTMLImportChild; 45 class HTMLImportChild;
46 46
47 // Processes the Custom Elements in an HTML Import. This is a 47 // Processes the Custom Elements in an HTML Import. This is a
48 // composite step which processes the Custom Elements created by 48 // composite step which processes the Custom Elements created by
49 // parsing the import, and its sub-imports. 49 // parsing the import, and its sub-imports.
50 // 50 //
51 // This step blocks further Custom Element microtask processing if its 51 // This step blocks further Custom Element microtask processing if its
52 // import isn't "ready" (finished parsing and running script.) 52 // import isn't "ready" (finished parsing and running script.)
53 class CustomElementMicrotaskImportStep : public CustomElementMicrotaskStep { 53 class CustomElementMicrotaskImportStep final : public CustomElementMicrotaskStep {
54 WTF_MAKE_NONCOPYABLE(CustomElementMicrotaskImportStep);
55 public: 54 public:
56 static PassOwnPtrWillBeRawPtr<CustomElementMicrotaskImportStep> create(HTMLI mportChild*); 55 static PassOwnPtrWillBeRawPtr<CustomElementMicrotaskImportStep> create(HTMLI mportChild*);
57 ~CustomElementMicrotaskImportStep() override; 56 ~CustomElementMicrotaskImportStep() override;
58 57
59 // API for HTML Imports 58 // API for HTML Imports
60 void invalidate(); 59 void invalidate();
61 void importDidFinishLoading(); 60 void importDidFinishLoading();
62 #if !ENABLE(OILPAN) 61 #if !ENABLE(OILPAN)
63 WeakPtr<CustomElementMicrotaskImportStep> weakPtr() { return m_weakFactory.c reateWeakPtr(); } 62 WeakPtr<CustomElementMicrotaskImportStep> weakPtr() { return m_weakFactory.c reateWeakPtr(); }
64 #endif 63 #endif
(...skipping 15 matching lines...) Expand all
80 WeakPtrWillBeWeakMember<HTMLImportChild> m_import; 79 WeakPtrWillBeWeakMember<HTMLImportChild> m_import;
81 #if !ENABLE(OILPAN) 80 #if !ENABLE(OILPAN)
82 WeakPtrFactory<CustomElementMicrotaskImportStep> m_weakFactory; 81 WeakPtrFactory<CustomElementMicrotaskImportStep> m_weakFactory;
83 #endif 82 #endif
84 RefPtrWillBeMember<CustomElementSyncMicrotaskQueue> m_queue; 83 RefPtrWillBeMember<CustomElementSyncMicrotaskQueue> m_queue;
85 }; 84 };
86 85
87 } // namespace blink 86 } // namespace blink
88 87
89 #endif // CustomElementMicrotaskImportStep_h 88 #endif // CustomElementMicrotaskImportStep_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698