| 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 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 55 #include "sky/engine/public/platform/WebInputEvent.h" | 55 #include "sky/engine/public/platform/WebInputEvent.h" |
| 56 #include "sky/engine/public/platform/WebRect.h" | 56 #include "sky/engine/public/platform/WebRect.h" |
| 57 #include "sky/engine/public/platform/WebURLRequest.h" | 57 #include "sky/engine/public/platform/WebURLRequest.h" |
| 58 #include "sky/engine/public/web/Sky.h" | 58 #include "sky/engine/public/web/Sky.h" |
| 59 #include "sky/engine/public/web/WebConsoleMessage.h" | 59 #include "sky/engine/public/web/WebConsoleMessage.h" |
| 60 #include "sky/engine/public/web/WebFrameClient.h" | 60 #include "sky/engine/public/web/WebFrameClient.h" |
| 61 #include "sky/engine/public/web/WebNode.h" | 61 #include "sky/engine/public/web/WebNode.h" |
| 62 #include "sky/engine/public/web/WebSettings.h" | 62 #include "sky/engine/public/web/WebSettings.h" |
| 63 #include "sky/engine/public/web/WebTextDirection.h" | 63 #include "sky/engine/public/web/WebTextDirection.h" |
| 64 #include "sky/engine/public/web/WebTouchAction.h" | 64 #include "sky/engine/public/web/WebTouchAction.h" |
| 65 #include "sky/engine/public/web/WebUserGestureIndicator.h" | |
| 66 #include "sky/engine/public/web/WebUserGestureToken.h" | |
| 67 #include "sky/engine/public/web/WebViewClient.h" | 65 #include "sky/engine/public/web/WebViewClient.h" |
| 68 #include "sky/engine/web/WebInputEventConversion.h" | 66 #include "sky/engine/web/WebInputEventConversion.h" |
| 69 #include "sky/engine/web/WebLocalFrameImpl.h" | 67 #include "sky/engine/web/WebLocalFrameImpl.h" |
| 70 #include "sky/engine/web/WebSettingsImpl.h" | 68 #include "sky/engine/web/WebSettingsImpl.h" |
| 71 #include "sky/engine/web/WebViewImpl.h" | 69 #include "sky/engine/web/WebViewImpl.h" |
| 72 #include "sky/engine/wtf/text/CString.h" | 70 #include "sky/engine/wtf/text/CString.h" |
| 73 #include "sky/engine/wtf/text/StringBuilder.h" | 71 #include "sky/engine/wtf/text/StringBuilder.h" |
| 74 #include "sky/engine/wtf/text/StringConcatenate.h" | 72 #include "sky/engine/wtf/text/StringConcatenate.h" |
| 75 #include "sky/engine/wtf/unicode/CharacterNames.h" | 73 #include "sky/engine/wtf/unicode/CharacterNames.h" |
| 76 | 74 |
| (...skipping 288 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 365 webFrame->client()->forwardInputEvent(&webEvent); | 363 webFrame->client()->forwardInputEvent(&webEvent); |
| 366 } else if (event->isWheelEvent()) { | 364 } else if (event->isWheelEvent()) { |
| 367 WebMouseWheelEventBuilder webEvent(webFrame->frameView(), 0, *static_cas
t<WheelEvent*>(event)); | 365 WebMouseWheelEventBuilder webEvent(webFrame->frameView(), 0, *static_cas
t<WheelEvent*>(event)); |
| 368 if (webEvent.type == WebInputEvent::Undefined) | 366 if (webEvent.type == WebInputEvent::Undefined) |
| 369 return; | 367 return; |
| 370 webFrame->client()->forwardInputEvent(&webEvent); | 368 webFrame->client()->forwardInputEvent(&webEvent); |
| 371 } | 369 } |
| 372 } | 370 } |
| 373 | 371 |
| 374 } // namespace blink | 372 } // namespace blink |
| OLD | NEW |