| OLD | NEW |
| 1 // -*- mode: c++; c-basic-offset: 4 -*- | 1 // -*- mode: c++; c-basic-offset: 4 -*- |
| 2 /* | 2 /* |
| 3 * Copyright (C) 2006 Apple Computer, Inc. | 3 * Copyright (C) 2006 Apple Computer, Inc. |
| 4 * | 4 * |
| 5 * This library is free software; you can redistribute it and/or | 5 * This library is free software; you can redistribute it and/or |
| 6 * modify it under the terms of the GNU Library General Public | 6 * modify it under the terms of the GNU Library General Public |
| 7 * License as published by the Free Software Foundation; either | 7 * License as published by the Free Software Foundation; either |
| 8 * version 2 of the License, or (at your option) any later version. | 8 * version 2 of the License, or (at your option) any later version. |
| 9 * | 9 * |
| 10 * This library is distributed in the hope that it will be useful, | 10 * This library is distributed in the hope that it will be useful, |
| (...skipping 15 matching lines...) Expand all Loading... |
| 26 #include "ContextMenuController.h" | 26 #include "ContextMenuController.h" |
| 27 #include "FrameLoaderTypes.h" | 27 #include "FrameLoaderTypes.h" |
| 28 #include "PlatformString.h" | 28 #include "PlatformString.h" |
| 29 #include <wtf/HashSet.h> | 29 #include <wtf/HashSet.h> |
| 30 #include <wtf/OwnPtr.h> | 30 #include <wtf/OwnPtr.h> |
| 31 | 31 |
| 32 #if PLATFORM(WIN) || (PLATFORM(WX) && PLATFORM(WIN_OS)) | 32 #if PLATFORM(WIN) || (PLATFORM(WX) && PLATFORM(WIN_OS)) |
| 33 typedef struct HINSTANCE__* HINSTANCE; | 33 typedef struct HINSTANCE__* HINSTANCE; |
| 34 #endif | 34 #endif |
| 35 | 35 |
| 36 typedef enum TextCaseSensitivity { | 36 enum TextCaseSensitivity { |
| 37 TextCaseSensitive, | 37 TextCaseSensitive, |
| 38 TextCaseInsensitive | 38 TextCaseInsensitive |
| 39 }; | 39 }; |
| 40 | 40 |
| 41 typedef enum FindDirection { | 41 enum FindDirection { |
| 42 FindDirectionForward, | 42 FindDirectionForward, |
| 43 FindDirectionBackward | 43 FindDirectionBackward |
| 44 }; | 44 }; |
| 45 | 45 |
| 46 namespace WebCore { | 46 namespace WebCore { |
| 47 | 47 |
| 48 class Chrome; | 48 class Chrome; |
| 49 class ChromeClient; | 49 class ChromeClient; |
| 50 class ContextMenuClient; | 50 class ContextMenuClient; |
| 51 class ContextMenuController; | 51 class ContextMenuController; |
| (...skipping 117 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 169 mutable time_t m_userStyleSheetModificationTime; | 169 mutable time_t m_userStyleSheetModificationTime; |
| 170 | 170 |
| 171 #if PLATFORM(WIN) || (PLATFORM(WX) && defined(__WXMSW__)) | 171 #if PLATFORM(WIN) || (PLATFORM(WX) && defined(__WXMSW__)) |
| 172 static HINSTANCE s_instanceHandle; | 172 static HINSTANCE s_instanceHandle; |
| 173 #endif | 173 #endif |
| 174 }; | 174 }; |
| 175 | 175 |
| 176 } // namespace WebCore | 176 } // namespace WebCore |
| 177 | 177 |
| 178 #endif // Page_h | 178 #endif // Page_h |
| OLD | NEW |