Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(429)

Side by Side Diff: third_party/WebKit/Source/web/WebInputEventConversion.h

Issue 1746283002: Rename enums/functions that collide in chromium style in platform/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: get-names-13-platform: . Created 4 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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
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
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/web/WebImageDecoder.cpp ('k') | third_party/WebKit/Source/web/WebInputEventConversion.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698