Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(423)

Side by Side Diff: third_party/WebKit/Source/web/FrameLoaderClientImpl.h

Issue 2154233003: Rewrite YouTube Flash embeds (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Addressed comments Created 4 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 166 matching lines...) Expand 10 before | Expand all | Expand 10 after
177 unsigned backForwardLength() override; 177 unsigned backForwardLength() override;
178 178
179 void suddenTerminationDisablerChanged(bool present, SuddenTerminationDisable rType) override; 179 void suddenTerminationDisablerChanged(bool present, SuddenTerminationDisable rType) override;
180 180
181 BlameContext* frameBlameContext() override; 181 BlameContext* frameBlameContext() override;
182 182
183 LinkResource* createServiceWorkerLinkResource(HTMLLinkElement*) override; 183 LinkResource* createServiceWorkerLinkResource(HTMLLinkElement*) override;
184 184
185 WebEffectiveConnectionType getEffectiveConnectionType() override; 185 WebEffectiveConnectionType getEffectiveConnectionType() override;
186 186
187 String OverrideFlashEmbedWithHTML(const String&) override;
188
187 private: 189 private:
188 explicit FrameLoaderClientImpl(WebLocalFrameImpl*); 190 explicit FrameLoaderClientImpl(WebLocalFrameImpl*);
189 191
190 bool isFrameLoaderClientImpl() const override { return true; } 192 bool isFrameLoaderClientImpl() const override { return true; }
191 193
192 // The WebFrame that owns this object and manages its lifetime. Therefore, 194 // The WebFrame that owns this object and manages its lifetime. Therefore,
193 // the web frame object is guaranteed to exist. 195 // the web frame object is guaranteed to exist.
194 Member<WebLocalFrameImpl> m_webFrame; 196 Member<WebLocalFrameImpl> m_webFrame;
195 197
196 String m_userAgent; 198 String m_userAgent;
197 }; 199 };
198 200
199 DEFINE_TYPE_CASTS(FrameLoaderClientImpl, FrameLoaderClient, client, client->isFr ameLoaderClientImpl(), client.isFrameLoaderClientImpl()); 201 DEFINE_TYPE_CASTS(FrameLoaderClientImpl, FrameLoaderClient, client, client->isFr ameLoaderClientImpl(), client.isFrameLoaderClientImpl());
200 202
201 } // namespace blink 203 } // namespace blink
202 204
203 #endif 205 #endif
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698