| 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 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 66 #include "platform/Cursor.h" | 66 #include "platform/Cursor.h" |
| 67 #include "platform/FileChooser.h" | 67 #include "platform/FileChooser.h" |
| 68 #include "platform/Histogram.h" | 68 #include "platform/Histogram.h" |
| 69 #include "platform/KeyboardCodes.h" | 69 #include "platform/KeyboardCodes.h" |
| 70 #include "platform/RuntimeEnabledFeatures.h" | 70 #include "platform/RuntimeEnabledFeatures.h" |
| 71 #include "platform/WebFrameScheduler.h" | 71 #include "platform/WebFrameScheduler.h" |
| 72 #include "platform/animation/CompositorAnimationHost.h" | 72 #include "platform/animation/CompositorAnimationHost.h" |
| 73 #include "platform/exported/WrappedResourceRequest.h" | 73 #include "platform/exported/WrappedResourceRequest.h" |
| 74 #include "platform/geometry/IntRect.h" | 74 #include "platform/geometry/IntRect.h" |
| 75 #include "platform/graphics/GraphicsLayer.h" | 75 #include "platform/graphics/GraphicsLayer.h" |
| 76 #include "platform/scheduler/renderer/web_view_scheduler.h" |
| 76 #include "platform/weborigin/SecurityOrigin.h" | 77 #include "platform/weborigin/SecurityOrigin.h" |
| 77 #include "platform/wtf/Optional.h" | 78 #include "platform/wtf/Optional.h" |
| 78 #include "platform/wtf/PtrUtil.h" | 79 #include "platform/wtf/PtrUtil.h" |
| 79 #include "platform/wtf/text/CString.h" | 80 #include "platform/wtf/text/CString.h" |
| 80 #include "platform/wtf/text/CharacterNames.h" | 81 #include "platform/wtf/text/CharacterNames.h" |
| 81 #include "platform/wtf/text/StringBuilder.h" | 82 #include "platform/wtf/text/StringBuilder.h" |
| 82 #include "platform/wtf/text/StringConcatenate.h" | 83 #include "platform/wtf/text/StringConcatenate.h" |
| 83 #include "public/platform/WebCursorInfo.h" | 84 #include "public/platform/WebCursorInfo.h" |
| 84 #include "public/platform/WebFloatRect.h" | 85 #include "public/platform/WebFloatRect.h" |
| 85 #include "public/platform/WebInputEvent.h" | 86 #include "public/platform/WebInputEvent.h" |
| 86 #include "public/platform/WebRect.h" | 87 #include "public/platform/WebRect.h" |
| 87 #include "public/platform/WebURLRequest.h" | 88 #include "public/platform/WebURLRequest.h" |
| 88 #include "public/platform/WebViewScheduler.h" | |
| 89 #include "public/web/WebAXObject.h" | 89 #include "public/web/WebAXObject.h" |
| 90 #include "public/web/WebAutofillClient.h" | 90 #include "public/web/WebAutofillClient.h" |
| 91 #include "public/web/WebColorChooser.h" | 91 #include "public/web/WebColorChooser.h" |
| 92 #include "public/web/WebColorSuggestion.h" | 92 #include "public/web/WebColorSuggestion.h" |
| 93 #include "public/web/WebConsoleMessage.h" | 93 #include "public/web/WebConsoleMessage.h" |
| 94 #include "public/web/WebFrameClient.h" | 94 #include "public/web/WebFrameClient.h" |
| 95 #include "public/web/WebInputElement.h" | 95 #include "public/web/WebInputElement.h" |
| 96 #include "public/web/WebKit.h" | 96 #include "public/web/WebKit.h" |
| 97 #include "public/web/WebNode.h" | 97 #include "public/web/WebNode.h" |
| 98 #include "public/web/WebPageImportanceSignals.h" | 98 #include "public/web/WebPageImportanceSignals.h" |
| (...skipping 1136 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1235 if (RuntimeEnabledFeatures::presentationEnabled()) | 1235 if (RuntimeEnabledFeatures::presentationEnabled()) |
| 1236 PresentationController::ProvideTo(frame, client->PresentationClient()); | 1236 PresentationController::ProvideTo(frame, client->PresentationClient()); |
| 1237 if (RuntimeEnabledFeatures::audioOutputDevicesEnabled()) { | 1237 if (RuntimeEnabledFeatures::audioOutputDevicesEnabled()) { |
| 1238 ProvideAudioOutputDeviceClientTo(frame, | 1238 ProvideAudioOutputDeviceClientTo(frame, |
| 1239 new AudioOutputDeviceClientImpl(frame)); | 1239 new AudioOutputDeviceClientImpl(frame)); |
| 1240 } | 1240 } |
| 1241 InstalledAppController::ProvideTo(frame, client->GetRelatedAppsFetcher()); | 1241 InstalledAppController::ProvideTo(frame, client->GetRelatedAppsFetcher()); |
| 1242 } | 1242 } |
| 1243 | 1243 |
| 1244 } // namespace blink | 1244 } // namespace blink |
| OLD | NEW |