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

Side by Side Diff: Source/core/html/imports/HTMLImportTreeRoot.h

Issue 656723005: Use C++11 features in core/html (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: mike's comments Created 6 years, 1 month 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 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef HTMLImportTreeRoot_h 5 #ifndef HTMLImportTreeRoot_h
6 #define HTMLImportTreeRoot_h 6 #define HTMLImportTreeRoot_h
7 7
8 #include "core/html/imports/HTMLImport.h" 8 #include "core/html/imports/HTMLImport.h"
9 #include "platform/Timer.h" 9 #include "platform/Timer.h"
10 #include "wtf/PassOwnPtr.h" 10 #include "wtf/PassOwnPtr.h"
(...skipping 24 matching lines...) Expand all
35 35
36 private: 36 private:
37 explicit HTMLImportTreeRoot(Document*); 37 explicit HTMLImportTreeRoot(Document*);
38 38
39 void recalcTimerFired(Timer<HTMLImportTreeRoot>*); 39 void recalcTimerFired(Timer<HTMLImportTreeRoot>*);
40 40
41 RawPtrWillBeMember<Document> m_document; 41 RawPtrWillBeMember<Document> m_document;
42 Timer<HTMLImportTreeRoot> m_recalcTimer; 42 Timer<HTMLImportTreeRoot> m_recalcTimer;
43 43
44 // List of import which has been loaded or being loaded. 44 // List of import which has been loaded or being loaded.
45 typedef WillBeHeapVector<OwnPtrWillBeMember<HTMLImportChild> > ImportList; 45 typedef WillBeHeapVector<OwnPtrWillBeMember<HTMLImportChild>> ImportList;
46 ImportList m_imports; 46 ImportList m_imports;
47 }; 47 };
48 48
49 DEFINE_TYPE_CASTS(HTMLImportTreeRoot, HTMLImport, import, import->isRoot(), impo rt.isRoot()); 49 DEFINE_TYPE_CASTS(HTMLImportTreeRoot, HTMLImport, import, import->isRoot(), impo rt.isRoot());
50 50
51 } 51 }
52 52
53 #endif 53 #endif
OLDNEW
« no previous file with comments | « Source/core/html/imports/HTMLImportLoader.h ('k') | Source/core/html/imports/HTMLImportTreeRoot.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698