| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2009 Google Inc. All rights reserved. | 2 * Copyright (C) 2009 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 25 matching lines...) Expand all Loading... |
| 36 #include <public/WebPoint.h> | 36 #include <public/WebPoint.h> |
| 37 #include <public/WebSize.h> | 37 #include <public/WebSize.h> |
| 38 #include <wtf/OwnPtr.h> | 38 #include <wtf/OwnPtr.h> |
| 39 #include <wtf/RefCounted.h> | 39 #include <wtf/RefCounted.h> |
| 40 | 40 |
| 41 namespace WebCore { | 41 namespace WebCore { |
| 42 class Frame; | 42 class Frame; |
| 43 class FramelessScrollView; | 43 class FramelessScrollView; |
| 44 class KeyboardEvent; | 44 class KeyboardEvent; |
| 45 class Page; | 45 class Page; |
| 46 #if ENABLE(GESTURE_RECOGNIZER) | |
| 47 class PlatformGestureRecognizer; | |
| 48 #endif | |
| 49 class PlatformKeyboardEvent; | 46 class PlatformKeyboardEvent; |
| 50 class Range; | 47 class Range; |
| 51 class Widget; | 48 class Widget; |
| 52 } | 49 } |
| 53 | 50 |
| 54 namespace WebKit { | 51 namespace WebKit { |
| 55 class WebGestureEvent; | 52 class WebGestureEvent; |
| 56 class WebKeyboardEvent; | 53 class WebKeyboardEvent; |
| 57 class WebMouseEvent; | 54 class WebMouseEvent; |
| 58 class WebMouseWheelEvent; | 55 class WebMouseWheelEvent; |
| (...skipping 74 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 133 WebPoint m_lastMousePosition; | 130 WebPoint m_lastMousePosition; |
| 134 | 131 |
| 135 // This is a non-owning ref. The popup will notify us via popupClosed() | 132 // This is a non-owning ref. The popup will notify us via popupClosed() |
| 136 // before it is destroyed. | 133 // before it is destroyed. |
| 137 WebCore::FramelessScrollView* m_widget; | 134 WebCore::FramelessScrollView* m_widget; |
| 138 }; | 135 }; |
| 139 | 136 |
| 140 } // namespace WebKit | 137 } // namespace WebKit |
| 141 | 138 |
| 142 #endif | 139 #endif |
| OLD | NEW |