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 56 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
67 #include "platform/Histogram.h" | 67 #include "platform/Histogram.h" |
68 #include "platform/KeyboardCodes.h" | 68 #include "platform/KeyboardCodes.h" |
69 #include "platform/RuntimeEnabledFeatures.h" | 69 #include "platform/RuntimeEnabledFeatures.h" |
70 #include "platform/exported/WrappedResourceRequest.h" | 70 #include "platform/exported/WrappedResourceRequest.h" |
71 #include "platform/geometry/IntRect.h" | 71 #include "platform/geometry/IntRect.h" |
72 #include "platform/graphics/GraphicsLayer.h" | 72 #include "platform/graphics/GraphicsLayer.h" |
73 #include "platform/weborigin/SecurityOrigin.h" | 73 #include "platform/weborigin/SecurityOrigin.h" |
74 #include "public/platform/WebCursorInfo.h" | 74 #include "public/platform/WebCursorInfo.h" |
75 #include "public/platform/WebFloatRect.h" | 75 #include "public/platform/WebFloatRect.h" |
76 #include "public/platform/WebFrameScheduler.h" | 76 #include "public/platform/WebFrameScheduler.h" |
| 77 #include "public/platform/WebInputEvent.h" |
77 #include "public/platform/WebRect.h" | 78 #include "public/platform/WebRect.h" |
78 #include "public/platform/WebURLRequest.h" | 79 #include "public/platform/WebURLRequest.h" |
79 #include "public/platform/WebViewScheduler.h" | 80 #include "public/platform/WebViewScheduler.h" |
80 #include "public/web/WebAXObject.h" | 81 #include "public/web/WebAXObject.h" |
81 #include "public/web/WebAutofillClient.h" | 82 #include "public/web/WebAutofillClient.h" |
82 #include "public/web/WebColorChooser.h" | 83 #include "public/web/WebColorChooser.h" |
83 #include "public/web/WebColorSuggestion.h" | 84 #include "public/web/WebColorSuggestion.h" |
84 #include "public/web/WebConsoleMessage.h" | 85 #include "public/web/WebConsoleMessage.h" |
85 #include "public/web/WebFrameClient.h" | 86 #include "public/web/WebFrameClient.h" |
86 #include "public/web/WebInputElement.h" | 87 #include "public/web/WebInputElement.h" |
87 #include "public/web/WebInputEvent.h" | |
88 #include "public/web/WebKit.h" | 88 #include "public/web/WebKit.h" |
89 #include "public/web/WebNode.h" | 89 #include "public/web/WebNode.h" |
90 #include "public/web/WebPageImportanceSignals.h" | 90 #include "public/web/WebPageImportanceSignals.h" |
91 #include "public/web/WebPlugin.h" | 91 #include "public/web/WebPlugin.h" |
92 #include "public/web/WebPopupMenuInfo.h" | 92 #include "public/web/WebPopupMenuInfo.h" |
93 #include "public/web/WebSelection.h" | 93 #include "public/web/WebSelection.h" |
94 #include "public/web/WebSettings.h" | 94 #include "public/web/WebSettings.h" |
95 #include "public/web/WebTextDirection.h" | 95 #include "public/web/WebTextDirection.h" |
96 #include "public/web/WebTouchAction.h" | 96 #include "public/web/WebTouchAction.h" |
97 #include "public/web/WebUserGestureIndicator.h" | 97 #include "public/web/WebUserGestureIndicator.h" |
(...skipping 1068 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1166 if (RuntimeEnabledFeatures::presentationEnabled()) | 1166 if (RuntimeEnabledFeatures::presentationEnabled()) |
1167 PresentationController::provideTo(frame, client->presentationClient()); | 1167 PresentationController::provideTo(frame, client->presentationClient()); |
1168 if (RuntimeEnabledFeatures::audioOutputDevicesEnabled()) | 1168 if (RuntimeEnabledFeatures::audioOutputDevicesEnabled()) |
1169 provideAudioOutputDeviceClientTo(frame, | 1169 provideAudioOutputDeviceClientTo(frame, |
1170 AudioOutputDeviceClientImpl::create()); | 1170 AudioOutputDeviceClientImpl::create()); |
1171 if (RuntimeEnabledFeatures::installedAppEnabled()) | 1171 if (RuntimeEnabledFeatures::installedAppEnabled()) |
1172 InstalledAppController::provideTo(frame, client->installedAppClient()); | 1172 InstalledAppController::provideTo(frame, client->installedAppClient()); |
1173 } | 1173 } |
1174 | 1174 |
1175 } // namespace blink | 1175 } // namespace blink |
OLD | NEW |