OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2009, 2012 Google Inc. All rights reserved. | 2 * Copyright (C) 2009, 2012 Google Inc. All rights reserved. |
3 * Copyright (C) 2011 Apple Inc. All rights reserved. | 3 * Copyright (C) 2011 Apple Inc. All rights reserved. |
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 17 matching lines...) Expand all Loading... |
28 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE | 28 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
29 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 29 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
30 */ | 30 */ |
31 | 31 |
32 #ifndef LocalFrameClientImpl_h | 32 #ifndef LocalFrameClientImpl_h |
33 #define LocalFrameClientImpl_h | 33 #define LocalFrameClientImpl_h |
34 | 34 |
35 #include "core/frame/LocalFrameClient.h" | 35 #include "core/frame/LocalFrameClient.h" |
36 #include "platform/heap/Handle.h" | 36 #include "platform/heap/Handle.h" |
37 #include "platform/weborigin/KURL.h" | 37 #include "platform/weborigin/KURL.h" |
| 38 #include "platform/wtf/RefPtr.h" |
38 #include "public/platform/WebInsecureRequestPolicy.h" | 39 #include "public/platform/WebInsecureRequestPolicy.h" |
39 #include "wtf/RefPtr.h" | |
40 | 40 |
41 #include <memory> | 41 #include <memory> |
42 | 42 |
43 namespace blink { | 43 namespace blink { |
44 | 44 |
45 class WebDevToolsAgentImpl; | 45 class WebDevToolsAgentImpl; |
46 class WebLocalFrameImpl; | 46 class WebLocalFrameImpl; |
47 | 47 |
48 class LocalFrameClientImpl final : public LocalFrameClient { | 48 class LocalFrameClientImpl final : public LocalFrameClient { |
49 public: | 49 public: |
(...skipping 182 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
232 | 232 |
233 DEFINE_TYPE_CASTS(LocalFrameClientImpl, | 233 DEFINE_TYPE_CASTS(LocalFrameClientImpl, |
234 LocalFrameClient, | 234 LocalFrameClient, |
235 client, | 235 client, |
236 client->isLocalFrameClientImpl(), | 236 client->isLocalFrameClientImpl(), |
237 client.isLocalFrameClientImpl()); | 237 client.isLocalFrameClientImpl()); |
238 | 238 |
239 } // namespace blink | 239 } // namespace blink |
240 | 240 |
241 #endif | 241 #endif |
OLD | NEW |