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

Side by Side Diff: sky/engine/web/ChromeClientImpl.cpp

Issue 676933002: Rename WebKit.h/cpp to Sky.h/cpp (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 6 years, 2 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/BUILD.gn ('k') | sky/engine/web/LinkHighlight.cpp » ('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) 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 39 matching lines...) Expand 10 before | Expand all | Expand 10 after
50 #include "platform/PlatformScreen.h" 50 #include "platform/PlatformScreen.h"
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/WebAXObject.h" 61 #include "public/web/WebAXObject.h"
61 #include "public/web/WebColorSuggestion.h" 62 #include "public/web/WebColorSuggestion.h"
62 #include "public/web/WebConsoleMessage.h" 63 #include "public/web/WebConsoleMessage.h"
63 #include "public/web/WebFrameClient.h" 64 #include "public/web/WebFrameClient.h"
64 #include "public/web/WebInputEvent.h" 65 #include "public/web/WebInputEvent.h"
65 #include "public/web/WebKit.h"
66 #include "public/web/WebNode.h" 66 #include "public/web/WebNode.h"
67 #include "public/web/WebSettings.h" 67 #include "public/web/WebSettings.h"
68 #include "public/web/WebTextDirection.h" 68 #include "public/web/WebTextDirection.h"
69 #include "public/web/WebTouchAction.h" 69 #include "public/web/WebTouchAction.h"
70 #include "public/web/WebUserGestureIndicator.h" 70 #include "public/web/WebUserGestureIndicator.h"
71 #include "public/web/WebUserGestureToken.h" 71 #include "public/web/WebUserGestureToken.h"
72 #include "public/web/WebViewClient.h" 72 #include "public/web/WebViewClient.h"
73 #include "web/WebInputEventConversion.h" 73 #include "web/WebInputEventConversion.h"
74 #include "web/WebLocalFrameImpl.h" 74 #include "web/WebLocalFrameImpl.h"
75 #include "web/WebSettingsImpl.h" 75 #include "web/WebSettingsImpl.h"
(...skipping 346 matching lines...) Expand 10 before | Expand all | Expand 10 after
422 webFrame->client()->forwardInputEvent(&webEvent); 422 webFrame->client()->forwardInputEvent(&webEvent);
423 } else if (event->isWheelEvent()) { 423 } else if (event->isWheelEvent()) {
424 WebMouseWheelEventBuilder webEvent(webFrame->frameView(), 0, *static_cas t<WheelEvent*>(event)); 424 WebMouseWheelEventBuilder webEvent(webFrame->frameView(), 0, *static_cas t<WheelEvent*>(event));
425 if (webEvent.type == WebInputEvent::Undefined) 425 if (webEvent.type == WebInputEvent::Undefined)
426 return; 426 return;
427 webFrame->client()->forwardInputEvent(&webEvent); 427 webFrame->client()->forwardInputEvent(&webEvent);
428 } 428 }
429 } 429 }
430 430
431 } // namespace blink 431 } // namespace blink
OLDNEW
« no previous file with comments | « sky/engine/web/BUILD.gn ('k') | sky/engine/web/LinkHighlight.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698