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

Unified Diff: Source/core/html/HTMLObjectElement.h

Issue 1125053002: Move renderFallbackContent() into FrameOwner interface. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Add comment Created 5 years, 7 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 side-by-side diff with in-line comments
Download patch
Index: Source/core/html/HTMLObjectElement.h
diff --git a/Source/core/html/HTMLObjectElement.h b/Source/core/html/HTMLObjectElement.h
index 81d2b892aca117ee28a631871269d0cbaa8f383a..174bd45304c10d41f236f3e18e159d0712f3d3c5 100644
--- a/Source/core/html/HTMLObjectElement.h
+++ b/Source/core/html/HTMLObjectElement.h
@@ -47,7 +47,7 @@ public:
virtual bool hasFallbackContent() const override;
virtual bool useFallbackContent() const override;
- virtual void renderFallbackContent() override;
+ virtual bool renderFallbackContent() override;
virtual bool isFormControlElement() const override { return false; }
@@ -55,8 +55,6 @@ public:
virtual bool isInteractiveContent() const override;
virtual bool appendFormData(FormDataList&, bool) override;
- virtual bool isObjectElement() const override { return true; }
-
// Implementations of constraint validation API.
// Note that the object elements are always barred from constraint validation.
virtual String validationMessage() const override { return String(); }

Powered by Google App Engine
This is Rietveld 408576698