| 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 56 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 67 }; | 67 }; |
| 68 | 68 |
| 69 class PlatformGestureEventBuilder : public PlatformGestureEvent { | 69 class PlatformGestureEventBuilder : public PlatformGestureEvent { |
| 70 public: | 70 public: |
| 71 PlatformGestureEventBuilder(Widget*, const WebGestureEvent&); | 71 PlatformGestureEventBuilder(Widget*, const WebGestureEvent&); |
| 72 }; | 72 }; |
| 73 | 73 |
| 74 class PlatformKeyboardEventBuilder : public PlatformKeyboardEvent { | 74 class PlatformKeyboardEventBuilder : public PlatformKeyboardEvent { |
| 75 public: | 75 public: |
| 76 PlatformKeyboardEventBuilder(const WebKeyboardEvent&); | 76 PlatformKeyboardEventBuilder(const WebKeyboardEvent&); |
| 77 void setKeyType(Type); | 77 void setKeyType(EventType); |
| 78 bool isCharacterKey() const; | 78 bool isCharacterKey() const; |
| 79 }; | 79 }; |
| 80 | 80 |
| 81 // Converts a WebTouchPoint to a PlatformTouchPoint. | 81 // Converts a WebTouchPoint to a PlatformTouchPoint. |
| 82 class PlatformTouchPointBuilder : public PlatformTouchPoint { | 82 class PlatformTouchPointBuilder : public PlatformTouchPoint { |
| 83 public: | 83 public: |
| 84 PlatformTouchPointBuilder(Widget*, const WebTouchPoint&); | 84 PlatformTouchPointBuilder(Widget*, const WebTouchPoint&); |
| 85 }; | 85 }; |
| 86 | 86 |
| 87 // Converts a WebTouchEvent to a PlatformTouchEvent. | 87 // Converts a WebTouchEvent to a PlatformTouchEvent. |
| (...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 128 // Converts GestureEvent to a corresponding WebGestureEvent. | 128 // Converts GestureEvent to a corresponding WebGestureEvent. |
| 129 // NOTE: If event mapping fails, the type will be set to Undefined. | 129 // NOTE: If event mapping fails, the type will be set to Undefined. |
| 130 class WebGestureEventBuilder : public WebGestureEvent { | 130 class WebGestureEventBuilder : public WebGestureEvent { |
| 131 public: | 131 public: |
| 132 WebGestureEventBuilder(const LayoutObject*, const GestureEvent&); | 132 WebGestureEventBuilder(const LayoutObject*, const GestureEvent&); |
| 133 }; | 133 }; |
| 134 | 134 |
| 135 } // namespace blink | 135 } // namespace blink |
| 136 | 136 |
| 137 #endif | 137 #endif |
| OLD | NEW |