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

Side by Side Diff: third_party/WebKit/Source/core/html/HTMLObjectElement.h

Issue 1844383003: Remove NPAPI support for form data (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 8 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) 1999 Lars Knoll (knoll@kde.org) 2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org)
3 * (C) 1999 Antti Koivisto (koivisto@kde.org) 3 * (C) 1999 Antti Koivisto (koivisto@kde.org)
4 * Copyright (C) 2004, 2006, 2007, 2008, 2009 Apple Inc. All rights reserved. 4 * Copyright (C) 2004, 2006, 2007, 2008, 2009 Apple Inc. All rights reserved.
5 * 5 *
6 * This library is free software; you can redistribute it and/or 6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Library General Public 7 * modify it under the terms of the GNU Library General Public
8 * License as published by the Free Software Foundation; either 8 * License as published by the Free Software Foundation; either
9 * version 2 of the License, or (at your option) any later version. 9 * version 2 of the License, or (at your option) any later version.
10 * 10 *
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after
46 bool containsJavaApplet() const; 46 bool containsJavaApplet() const;
47 47
48 bool hasFallbackContent() const override; 48 bool hasFallbackContent() const override;
49 bool useFallbackContent() const override; 49 bool useFallbackContent() const override;
50 void renderFallbackContent() override; 50 void renderFallbackContent() override;
51 51
52 bool isFormControlElement() const override { return false; } 52 bool isFormControlElement() const override { return false; }
53 53
54 bool isEnumeratable() const override { return true; } 54 bool isEnumeratable() const override { return true; }
55 bool isInteractiveContent() const override; 55 bool isInteractiveContent() const override;
56 void appendToFormData(FormData&) override;
57 56
58 // Implementations of constraint validation API. 57 // Implementations of constraint validation API.
59 // Note that the object elements are always barred from constraint validatio n. 58 // Note that the object elements are always barred from constraint validatio n.
60 String validationMessage() const override { return String(); } 59 String validationMessage() const override { return String(); }
61 bool checkValidity() { return true; } 60 bool checkValidity() { return true; }
62 bool reportValidity() { return true; } 61 bool reportValidity() { return true; }
63 void setCustomValidity(const String&) override { } 62 void setCustomValidity(const String&) override { }
64 63
65 #if !ENABLE(OILPAN) 64 #if !ENABLE(OILPAN)
66 using Node::ref; 65 using Node::ref;
(...skipping 74 matching lines...) Expand 10 before | Expand all | Expand 10 after
141 const HTMLObjectElement& objectElement = static_cast<const HTMLObjectElement &>(element); 140 const HTMLObjectElement& objectElement = static_cast<const HTMLObjectElement &>(element);
142 // We need to assert after the cast because FormAssociatedElement doesn't 141 // We need to assert after the cast because FormAssociatedElement doesn't
143 // have hasTagName. 142 // have hasTagName.
144 ASSERT_WITH_SECURITY_IMPLICATION(objectElement.hasTagName(HTMLNames::objectT ag)); 143 ASSERT_WITH_SECURITY_IMPLICATION(objectElement.hasTagName(HTMLNames::objectT ag));
145 return objectElement; 144 return objectElement;
146 } 145 }
147 146
148 } // namespace blink 147 } // namespace blink
149 148
150 #endif // HTMLObjectElement_h 149 #endif // HTMLObjectElement_h
OLDNEW
« no previous file with comments | « content/renderer/pepper/pepper_webplugin_impl.cc ('k') | third_party/WebKit/Source/core/html/HTMLObjectElement.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698