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

Side by Side Diff: sky/engine/web/WebViewImpl.h

Issue 860593003: Move WebInputEvent from public/web to public/platform (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Build fix Created 5 years, 11 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
« no previous file with comments | « sky/engine/web/WebInputEventConversion.h ('k') | sky/viewer/converters/input_event_types.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2010 Google Inc. All rights reserved. 2 * Copyright (C) 2010 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 17 matching lines...) Expand all
28 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 28 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
29 */ 29 */
30 30
31 #ifndef SKY_ENGINE_WEB_WEBVIEWIMPL_H_ 31 #ifndef SKY_ENGINE_WEB_WEBVIEWIMPL_H_
32 #define SKY_ENGINE_WEB_WEBVIEWIMPL_H_ 32 #define SKY_ENGINE_WEB_WEBVIEWIMPL_H_
33 33
34 #include "sky/engine/core/html/ime/InputMethodContext.h" 34 #include "sky/engine/core/html/ime/InputMethodContext.h"
35 #include "sky/engine/platform/geometry/IntPoint.h" 35 #include "sky/engine/platform/geometry/IntPoint.h"
36 #include "sky/engine/platform/geometry/IntRect.h" 36 #include "sky/engine/platform/geometry/IntRect.h"
37 #include "sky/engine/public/platform/WebGestureCurveTarget.h" 37 #include "sky/engine/public/platform/WebGestureCurveTarget.h"
38 #include "sky/engine/public/platform/WebInputEvent.h"
38 #include "sky/engine/public/platform/WebLayer.h" 39 #include "sky/engine/public/platform/WebLayer.h"
39 #include "sky/engine/public/platform/WebPoint.h" 40 #include "sky/engine/public/platform/WebPoint.h"
40 #include "sky/engine/public/platform/WebRect.h" 41 #include "sky/engine/public/platform/WebRect.h"
41 #include "sky/engine/public/platform/WebSize.h" 42 #include "sky/engine/public/platform/WebSize.h"
42 #include "sky/engine/public/platform/WebString.h" 43 #include "sky/engine/public/platform/WebString.h"
43 #include "sky/engine/public/web/WebInputEvent.h"
44 #include "sky/engine/public/web/WebNavigationPolicy.h" 44 #include "sky/engine/public/web/WebNavigationPolicy.h"
45 #include "sky/engine/public/web/WebView.h" 45 #include "sky/engine/public/web/WebView.h"
46 #include "sky/engine/web/ChromeClientImpl.h" 46 #include "sky/engine/web/ChromeClientImpl.h"
47 #include "sky/engine/web/EditorClientImpl.h" 47 #include "sky/engine/web/EditorClientImpl.h"
48 #include "sky/engine/web/PageWidgetDelegate.h" 48 #include "sky/engine/web/PageWidgetDelegate.h"
49 #include "sky/engine/web/SpellCheckerClientImpl.h" 49 #include "sky/engine/web/SpellCheckerClientImpl.h"
50 #include "sky/engine/wtf/OwnPtr.h" 50 #include "sky/engine/wtf/OwnPtr.h"
51 #include "sky/engine/wtf/RefCounted.h" 51 #include "sky/engine/wtf/RefCounted.h"
52 #include "sky/engine/wtf/Vector.h" 52 #include "sky/engine/wtf/Vector.h"
53 53
(...skipping 292 matching lines...) Expand 10 before | Expand all | Expand 10 after
346 bool m_userGestureObserved; 346 bool m_userGestureObserved;
347 }; 347 };
348 348
349 // We have no ways to check if the specified WebView is an instance of 349 // We have no ways to check if the specified WebView is an instance of
350 // WebViewImpl because WebViewImpl is the only implementation of WebView. 350 // WebViewImpl because WebViewImpl is the only implementation of WebView.
351 DEFINE_TYPE_CASTS(WebViewImpl, WebView, webView, true, true); 351 DEFINE_TYPE_CASTS(WebViewImpl, WebView, webView, true, true);
352 352
353 } // namespace blink 353 } // namespace blink
354 354
355 #endif // SKY_ENGINE_WEB_WEBVIEWIMPL_H_ 355 #endif // SKY_ENGINE_WEB_WEBVIEWIMPL_H_
OLDNEW
« no previous file with comments | « sky/engine/web/WebInputEventConversion.h ('k') | sky/viewer/converters/input_event_types.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698