OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2006, 2008, 2011 Apple Inc. All rights reserved. | 2 * Copyright (C) 2006, 2008, 2011 Apple Inc. All rights reserved. |
3 * Copyright (C) 2012 Research In Motion Limited. All rights reserved. | 3 * Copyright (C) 2012 Research In Motion Limited. All rights reserved. |
4 * | 4 * |
5 * Redistribution and use in source and binary forms, with or without | 5 * Redistribution and use in source and binary forms, with or without |
6 * modification, are permitted provided that the following conditions | 6 * modification, are permitted provided that the following conditions |
7 * are met: | 7 * are met: |
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 10 matching lines...) Expand all Loading... |
21 * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY | 21 * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY |
22 * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | 22 * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
23 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE | 23 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
24 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 24 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
25 */ | 25 */ |
26 | 26 |
27 #ifndef HistoryItem_h | 27 #ifndef HistoryItem_h |
28 #define HistoryItem_h | 28 #define HistoryItem_h |
29 | 29 |
30 #include "bindings/v8/SerializedScriptValue.h" | 30 #include "bindings/v8/SerializedScriptValue.h" |
31 #include "core/platform/graphics/IntPoint.h" | 31 #include "platform/geometry/IntPoint.h" |
32 #include "wtf/RefCounted.h" | 32 #include "wtf/RefCounted.h" |
33 #include "wtf/text/WTFString.h" | 33 #include "wtf/text/WTFString.h" |
34 | 34 |
35 namespace WebCore { | 35 namespace WebCore { |
36 | 36 |
37 class Document; | 37 class Document; |
38 class FormData; | 38 class FormData; |
39 class HistoryItem; | 39 class HistoryItem; |
40 class Image; | 40 class Image; |
41 class KURL; | 41 class KURL; |
(...skipping 135 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
177 }; //class HistoryItem | 177 }; //class HistoryItem |
178 | 178 |
179 } //namespace WebCore | 179 } //namespace WebCore |
180 | 180 |
181 #ifndef NDEBUG | 181 #ifndef NDEBUG |
182 // Outside the WebCore namespace for ease of invocation from gdb. | 182 // Outside the WebCore namespace for ease of invocation from gdb. |
183 extern "C" int showTree(const WebCore::HistoryItem*); | 183 extern "C" int showTree(const WebCore::HistoryItem*); |
184 #endif | 184 #endif |
185 | 185 |
186 #endif // HISTORYITEM_H | 186 #endif // HISTORYITEM_H |
OLD | NEW |