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 125 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
136 const ResourceRequest&, | 136 const ResourceRequest&, |
137 const SubstituteData&, | 137 const SubstituteData&, |
138 ClientRedirectPolicy) override; | 138 ClientRedirectPolicy) override; |
139 WTF::String userAgent() override; | 139 WTF::String userAgent() override; |
140 WTF::String doNotTrackValue() override; | 140 WTF::String doNotTrackValue() override; |
141 void transitionToCommittedForNewPage() override; | 141 void transitionToCommittedForNewPage() override; |
142 LocalFrame* createFrame(const FrameLoadRequest&, | 142 LocalFrame* createFrame(const FrameLoadRequest&, |
143 const WTF::AtomicString& name, | 143 const WTF::AtomicString& name, |
144 HTMLFrameOwnerElement*) override; | 144 HTMLFrameOwnerElement*) override; |
145 virtual bool canCreatePluginWithoutRenderer(const String& mimeType) const; | 145 virtual bool canCreatePluginWithoutRenderer(const String& mimeType) const; |
146 Widget* createPlugin(HTMLPlugInElement*, | 146 FrameViewBase* createPlugin(HTMLPlugInElement*, |
147 const KURL&, | 147 const KURL&, |
148 const Vector<WTF::String>&, | 148 const Vector<WTF::String>&, |
149 const Vector<WTF::String>&, | 149 const Vector<WTF::String>&, |
150 const WTF::String&, | 150 const WTF::String&, |
151 bool loadManually, | 151 bool loadManually, |
152 DetachedPluginPolicy) override; | 152 DetachedPluginPolicy) override; |
153 std::unique_ptr<WebMediaPlayer> createWebMediaPlayer( | 153 std::unique_ptr<WebMediaPlayer> createWebMediaPlayer( |
154 HTMLMediaElement&, | 154 HTMLMediaElement&, |
155 const WebMediaPlayerSource&, | 155 const WebMediaPlayerSource&, |
156 WebMediaPlayerClient*) override; | 156 WebMediaPlayerClient*) override; |
157 WebRemotePlaybackClient* createWebRemotePlaybackClient( | 157 WebRemotePlaybackClient* createWebRemotePlaybackClient( |
158 HTMLMediaElement&) override; | 158 HTMLMediaElement&) override; |
159 ObjectContentType getObjectContentType( | 159 ObjectContentType getObjectContentType( |
160 const KURL&, | 160 const KURL&, |
161 const WTF::String& mimeType, | 161 const WTF::String& mimeType, |
162 bool shouldPreferPlugInsForImages) override; | 162 bool shouldPreferPlugInsForImages) override; |
(...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
238 | 238 |
239 DEFINE_TYPE_CASTS(LocalFrameClientImpl, | 239 DEFINE_TYPE_CASTS(LocalFrameClientImpl, |
240 LocalFrameClient, | 240 LocalFrameClient, |
241 client, | 241 client, |
242 client->isLocalFrameClientImpl(), | 242 client->isLocalFrameClientImpl(), |
243 client.isLocalFrameClientImpl()); | 243 client.isLocalFrameClientImpl()); |
244 | 244 |
245 } // namespace blink | 245 } // namespace blink |
246 | 246 |
247 #endif | 247 #endif |
OLD | NEW |