Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 /* | 1 /* |
| 2 * Copyright (C) 2010 Google Inc. All rights reserved. | 2 * Copyright (C) 2010 Google Inc. All rights reserved. |
| 3 * Copyright (C) 2011 Apple Inc. All rights reserved. | 3 * Copyright (C) 2011 Apple Inc. All rights reserved. |
| 4 * Copyright (C) 2012 Samsung Electronics. All rights reserved. | 4 * Copyright (C) 2012 Samsung Electronics. All rights reserved. |
| 5 * | 5 * |
| 6 * Redistribution and use in source and binary forms, with or without | 6 * Redistribution and use in source and binary forms, with or without |
| 7 * modification, are permitted provided that the following conditions are | 7 * modification, are permitted provided that the following conditions are |
| 8 * met: | 8 * met: |
| 9 * | 9 * |
| 10 * * Redistributions of source code must retain the above copyright | 10 * * Redistributions of source code must retain the above copyright |
| (...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 66 bool hasLegalLinkAttribute(const QualifiedName&) const override; | 66 bool hasLegalLinkAttribute(const QualifiedName&) const override; |
| 67 const QualifiedName& subResourceAttributeName() const override; | 67 const QualifiedName& subResourceAttributeName() const override; |
| 68 void ensureFallbackContent() override; | 68 void ensureFallbackContent() override; |
| 69 void ensurePrimaryContent() override; | 69 void ensurePrimaryContent() override; |
| 70 void createShadowSubtree() override; | 70 void createShadowSubtree() override; |
| 71 | 71 |
| 72 void reattachFallbackContent(); | 72 void reattachFallbackContent(); |
| 73 void setUseFallbackContent(); | 73 void setUseFallbackContent(); |
| 74 bool hasFallbackContent() const { return m_useFallbackContent; } | 74 bool hasFallbackContent() const { return m_useFallbackContent; } |
| 75 | 75 |
| 76 IntPoint | 76 // Valid only during HTMLFormElement::prepareForSubmission(). |
|
yosin_UTC9
2016/10/03 04:00:24
I think this comment is for |m_clickLocation|, so
tkent
2016/10/03 04:14:14
I agree with it. The comment is followed by the v
| |
| 77 m_clickLocation; // Valid only during HTMLFormElement::prepareForSubmissi on(). | 77 IntPoint m_clickLocation; |
| 78 | |
| 78 bool m_useFallbackContent; | 79 bool m_useFallbackContent; |
| 79 }; | 80 }; |
| 80 | 81 |
| 81 } // namespace blink | 82 } // namespace blink |
| 82 | 83 |
| 83 #endif // ImageInputType_h | 84 #endif // ImageInputType_h |
| OLD | NEW |