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

Side by Side Diff: third_party/WebKit/Source/core/testing/DummyPageHolder.h

Issue 1412083007: Remove FastAllocBase.h (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 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 /* 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 17 matching lines...) Expand all
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 DummyPageHolder_h 31 #ifndef DummyPageHolder_h
32 #define DummyPageHolder_h 32 #define DummyPageHolder_h
33 33
34 #include "core/loader/FrameLoaderClient.h" 34 #include "core/loader/FrameLoaderClient.h"
35 #include "core/page/Page.h" 35 #include "core/page/Page.h"
36 #include "platform/geometry/IntSize.h" 36 #include "platform/geometry/IntSize.h"
37 #include "platform/heap/Handle.h" 37 #include "platform/heap/Handle.h"
38 #include "wtf/FastAllocBase.h" 38 #include "wtf/Allocator.h"
39 #include "wtf/Noncopyable.h" 39 #include "wtf/Noncopyable.h"
40 #include "wtf/OwnPtr.h" 40 #include "wtf/OwnPtr.h"
41 #include "wtf/PassOwnPtr.h" 41 #include "wtf/PassOwnPtr.h"
42 42
43 namespace blink { 43 namespace blink {
44 44
45 class Document; 45 class Document;
46 class LocalFrame; 46 class LocalFrame;
47 class FrameView; 47 class FrameView;
48 class IntSize; 48 class IntSize;
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
82 82
83 OwnPtrWillBePersistent<Page> m_page; 83 OwnPtrWillBePersistent<Page> m_page;
84 RefPtrWillBePersistent<LocalFrame> m_frame; 84 RefPtrWillBePersistent<LocalFrame> m_frame;
85 85
86 OwnPtrWillBePersistent<FrameLoaderClient> m_frameLoaderClient; 86 OwnPtrWillBePersistent<FrameLoaderClient> m_frameLoaderClient;
87 }; 87 };
88 88
89 } // namespace blink 89 } // namespace blink
90 90
91 #endif // DummyPageHolder_h 91 #endif // DummyPageHolder_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698