| 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 150 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 161 const Vector<WTF::String>&, | 161 const Vector<WTF::String>&, |
| 162 const WTF::String&, | 162 const WTF::String&, |
| 163 bool load_manually, | 163 bool load_manually, |
| 164 DetachedPluginPolicy) override; | 164 DetachedPluginPolicy) override; |
| 165 std::unique_ptr<WebMediaPlayer> CreateWebMediaPlayer( | 165 std::unique_ptr<WebMediaPlayer> CreateWebMediaPlayer( |
| 166 HTMLMediaElement&, | 166 HTMLMediaElement&, |
| 167 const WebMediaPlayerSource&, | 167 const WebMediaPlayerSource&, |
| 168 WebMediaPlayerClient*) override; | 168 WebMediaPlayerClient*) override; |
| 169 WebRemotePlaybackClient* CreateWebRemotePlaybackClient( | 169 WebRemotePlaybackClient* CreateWebRemotePlaybackClient( |
| 170 HTMLMediaElement&) override; | 170 HTMLMediaElement&) override; |
| 171 ObjectContentType GetObjectContentType( | |
| 172 const KURL&, | |
| 173 const WTF::String& mime_type, | |
| 174 bool should_prefer_plug_ins_for_images) override; | |
| 175 void DidChangeScrollOffset() override; | 171 void DidChangeScrollOffset() override; |
| 176 void DidUpdateCurrentHistoryItem() override; | 172 void DidUpdateCurrentHistoryItem() override; |
| 177 | 173 |
| 178 bool AllowContentInitiatedDataUrlNavigations(const KURL&) override; | 174 bool AllowContentInitiatedDataUrlNavigations(const KURL&) override; |
| 179 | 175 |
| 180 WebCookieJar* CookieJar() const override; | 176 WebCookieJar* CookieJar() const override; |
| 181 void FrameFocused() const override; | 177 void FrameFocused() const override; |
| 182 void DidChangeName(const String&) override; | 178 void DidChangeName(const String&) override; |
| 183 void DidEnforceInsecureRequestPolicy(WebInsecureRequestPolicy) override; | 179 void DidEnforceInsecureRequestPolicy(WebInsecureRequestPolicy) override; |
| 184 void DidUpdateToUniqueOrigin() override; | 180 void DidUpdateToUniqueOrigin() override; |
| (...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 257 | 253 |
| 258 DEFINE_TYPE_CASTS(LocalFrameClientImpl, | 254 DEFINE_TYPE_CASTS(LocalFrameClientImpl, |
| 259 LocalFrameClient, | 255 LocalFrameClient, |
| 260 client, | 256 client, |
| 261 client->IsLocalFrameClientImpl(), | 257 client->IsLocalFrameClientImpl(), |
| 262 client.IsLocalFrameClientImpl()); | 258 client.IsLocalFrameClientImpl()); |
| 263 | 259 |
| 264 } // namespace blink | 260 } // namespace blink |
| 265 | 261 |
| 266 #endif | 262 #endif |
| OLD | NEW |