Index: third_party/WebKit/Source/core/loader/FrameLoaderClient.h |
diff --git a/third_party/WebKit/Source/core/loader/FrameLoaderClient.h b/third_party/WebKit/Source/core/loader/FrameLoaderClient.h |
index e320cddb7837dc044f483970dc2a1f81f1f0f9ee..65da964bc8d2568293971491c05be2be3aebb9b3 100644 |
--- a/third_party/WebKit/Source/core/loader/FrameLoaderClient.h |
+++ b/third_party/WebKit/Source/core/loader/FrameLoaderClient.h |
@@ -272,6 +272,10 @@ public: |
// Effective connection type when this frame was loaded. |
virtual WebEffectiveConnectionType getEffectiveConnectionType() { return WebEffectiveConnectionType::TypeUnknown; } |
+ |
+ // Overwrites the given URL to use an HTML5 embed if possible. |
+ // An empty URL is returned if the URL is not overriden. |
+ virtual KURL overrideFlashEmbedWithHTML(const KURL&) { return KURL(); } |
}; |
} // namespace blink |