| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2009 Google Inc. All rights reserved. | 2 * Copyright (C) 2009 Google Inc. All rights reserved. |
| 3 * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies). | 3 * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies). |
| 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 are | 6 * modification, are permitted provided that the following conditions are |
| 7 * met: | 7 * met: |
| 8 * | 8 * |
| 9 * * Redistributions of source code must retain the above copyright | 9 * * Redistributions of source code must retain the above copyright |
| 10 * notice, this list of conditions and the following disclaimer. | 10 * notice, this list of conditions and the following disclaimer. |
| (...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 51 #include "platform/RuntimeEnabledFeatures.h" | 51 #include "platform/RuntimeEnabledFeatures.h" |
| 52 #include "platform/exported/WrappedResourceRequest.h" | 52 #include "platform/exported/WrappedResourceRequest.h" |
| 53 #include "platform/geometry/FloatRect.h" | 53 #include "platform/geometry/FloatRect.h" |
| 54 #include "platform/geometry/IntRect.h" | 54 #include "platform/geometry/IntRect.h" |
| 55 #include "platform/graphics/GraphicsLayer.h" | 55 #include "platform/graphics/GraphicsLayer.h" |
| 56 #include "public/platform/Platform.h" | 56 #include "public/platform/Platform.h" |
| 57 #include "public/platform/WebCursorInfo.h" | 57 #include "public/platform/WebCursorInfo.h" |
| 58 #include "public/platform/WebRect.h" | 58 #include "public/platform/WebRect.h" |
| 59 #include "public/platform/WebURLRequest.h" | 59 #include "public/platform/WebURLRequest.h" |
| 60 #include "public/web/Sky.h" | 60 #include "public/web/Sky.h" |
| 61 #include "public/web/WebAXObject.h" | |
| 62 #include "public/web/WebColorSuggestion.h" | 61 #include "public/web/WebColorSuggestion.h" |
| 63 #include "public/web/WebConsoleMessage.h" | 62 #include "public/web/WebConsoleMessage.h" |
| 64 #include "public/web/WebFrameClient.h" | 63 #include "public/web/WebFrameClient.h" |
| 65 #include "public/web/WebInputEvent.h" | 64 #include "public/web/WebInputEvent.h" |
| 66 #include "public/web/WebNode.h" | 65 #include "public/web/WebNode.h" |
| 67 #include "public/web/WebSettings.h" | 66 #include "public/web/WebSettings.h" |
| 68 #include "public/web/WebTextDirection.h" | 67 #include "public/web/WebTextDirection.h" |
| 69 #include "public/web/WebTouchAction.h" | 68 #include "public/web/WebTouchAction.h" |
| 70 #include "public/web/WebUserGestureIndicator.h" | 69 #include "public/web/WebUserGestureIndicator.h" |
| 71 #include "public/web/WebUserGestureToken.h" | 70 #include "public/web/WebUserGestureToken.h" |
| (...skipping 350 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 422 webFrame->client()->forwardInputEvent(&webEvent); | 421 webFrame->client()->forwardInputEvent(&webEvent); |
| 423 } else if (event->isWheelEvent()) { | 422 } else if (event->isWheelEvent()) { |
| 424 WebMouseWheelEventBuilder webEvent(webFrame->frameView(), 0, *static_cas
t<WheelEvent*>(event)); | 423 WebMouseWheelEventBuilder webEvent(webFrame->frameView(), 0, *static_cas
t<WheelEvent*>(event)); |
| 425 if (webEvent.type == WebInputEvent::Undefined) | 424 if (webEvent.type == WebInputEvent::Undefined) |
| 426 return; | 425 return; |
| 427 webFrame->client()->forwardInputEvent(&webEvent); | 426 webFrame->client()->forwardInputEvent(&webEvent); |
| 428 } | 427 } |
| 429 } | 428 } |
| 430 | 429 |
| 431 } // namespace blink | 430 } // namespace blink |
| OLD | NEW |