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

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

Issue 272243004: HTML Imports: Fix race conditions on HTMLImportsChild (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 7 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
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 35 matching lines...) Expand 10 before | Expand all | Expand 10 after
46 WTF_MAKE_NONCOPYABLE(CustomElementMicrotaskResolutionStep); 46 WTF_MAKE_NONCOPYABLE(CustomElementMicrotaskResolutionStep);
47 public: 47 public:
48 static PassOwnPtr<CustomElementMicrotaskResolutionStep> create(PassRefPtr<Cu stomElementRegistrationContext>, PassRefPtr<Element>, const CustomElementDescrip tor&); 48 static PassOwnPtr<CustomElementMicrotaskResolutionStep> create(PassRefPtr<Cu stomElementRegistrationContext>, PassRefPtr<Element>, const CustomElementDescrip tor&);
49 49
50 virtual ~CustomElementMicrotaskResolutionStep(); 50 virtual ~CustomElementMicrotaskResolutionStep();
51 51
52 private: 52 private:
53 CustomElementMicrotaskResolutionStep(PassRefPtr<CustomElementRegistrationCon text>, PassRefPtr<Element>, const CustomElementDescriptor&); 53 CustomElementMicrotaskResolutionStep(PassRefPtr<CustomElementRegistrationCon text>, PassRefPtr<Element>, const CustomElementDescriptor&);
54 54
55 virtual Result process() OVERRIDE; 55 virtual Result process() OVERRIDE;
56 virtual bool needsProcessOrStop() const OVERRIDE;
56 57
57 #if !defined(NDEBUG) 58 #if !defined(NDEBUG)
58 virtual void show(unsigned indent) OVERRIDE; 59 virtual void show(unsigned indent) OVERRIDE;
59 #endif 60 #endif
60 61
61 RefPtr<CustomElementRegistrationContext> m_context; 62 RefPtr<CustomElementRegistrationContext> m_context;
62 RefPtr<Element> m_element; 63 RefPtr<Element> m_element;
63 CustomElementDescriptor m_descriptor; 64 CustomElementDescriptor m_descriptor;
64 }; 65 };
65 66
66 } 67 }
67 68
68 #endif // CustomElementMicrotaskResolutionStep_h 69 #endif // CustomElementMicrotaskResolutionStep_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698