| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2006 Eric Seidel <eric@webkit.org> | 2 * Copyright (C) 2006 Eric Seidel <eric@webkit.org> |
| 3 * Copyright (C) 2008, 2009, 2012 Apple Inc. All rights reserved. | 3 * Copyright (C) 2008, 2009, 2012 Apple Inc. All rights reserved. |
| 4 * Copyright (C) Research In Motion Limited 2011. All rights reserved. | 4 * Copyright (C) Research In Motion Limited 2011. All rights reserved. |
| 5 * | 5 * |
| 6 * Redistribution and use in source and binary forms, with or without | 6 * Redistribution and use in source and binary forms, with or without |
| 7 * modification, are permitted provided that the following conditions | 7 * modification, are permitted provided that the following conditions |
| 8 * are met: | 8 * are met: |
| 9 * 1. Redistributions of source code must retain the above copyright | 9 * 1. 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 18 matching lines...) Expand all Loading... |
| 29 | 29 |
| 30 #include <memory> | 30 #include <memory> |
| 31 #include "core/frame/ContentSettingsClient.h" | 31 #include "core/frame/ContentSettingsClient.h" |
| 32 #include "core/frame/LocalFrame.h" | 32 #include "core/frame/LocalFrame.h" |
| 33 #include "core/frame/VisualViewport.h" | 33 #include "core/frame/VisualViewport.h" |
| 34 #include "core/html/HTMLFormElement.h" | 34 #include "core/html/HTMLFormElement.h" |
| 35 #include "core/html/forms/ColorChooser.h" | 35 #include "core/html/forms/ColorChooser.h" |
| 36 #include "core/html/forms/DateTimeChooser.h" | 36 #include "core/html/forms/DateTimeChooser.h" |
| 37 #include "core/loader/DocumentLoader.h" | 37 #include "core/loader/DocumentLoader.h" |
| 38 #include "platform/FileChooser.h" | 38 #include "platform/FileChooser.h" |
| 39 #include "platform/FrameViewBase.h" | |
| 40 #include "platform/wtf/PtrUtil.h" | 39 #include "platform/wtf/PtrUtil.h" |
| 41 #include "public/platform/Platform.h" | 40 #include "public/platform/Platform.h" |
| 42 #include "public/platform/WebApplicationCacheHost.h" | 41 #include "public/platform/WebApplicationCacheHost.h" |
| 43 #include "public/platform/WebMediaPlayer.h" | 42 #include "public/platform/WebMediaPlayer.h" |
| 44 #include "public/platform/modules/serviceworker/WebServiceWorkerProvider.h" | 43 #include "public/platform/modules/serviceworker/WebServiceWorkerProvider.h" |
| 45 #include "public/platform/modules/serviceworker/WebServiceWorkerProviderClient.h
" | 44 #include "public/platform/modules/serviceworker/WebServiceWorkerProviderClient.h
" |
| 46 | 45 |
| 47 namespace blink { | 46 namespace blink { |
| 48 | 47 |
| 49 void FillWithEmptyClients(Page::PageClients& page_clients) { | 48 void FillWithEmptyClients(Page::PageClients& page_clients) { |
| (...skipping 157 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 207 | 206 |
| 208 std::unique_ptr<WebApplicationCacheHost> | 207 std::unique_ptr<WebApplicationCacheHost> |
| 209 EmptyLocalFrameClient::CreateApplicationCacheHost( | 208 EmptyLocalFrameClient::CreateApplicationCacheHost( |
| 210 WebApplicationCacheHostClient*) { | 209 WebApplicationCacheHostClient*) { |
| 211 return nullptr; | 210 return nullptr; |
| 212 } | 211 } |
| 213 | 212 |
| 214 EmptyRemoteFrameClient::EmptyRemoteFrameClient() = default; | 213 EmptyRemoteFrameClient::EmptyRemoteFrameClient() = default; |
| 215 | 214 |
| 216 } // namespace blink | 215 } // namespace blink |
| OLD | NEW |