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

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

Issue 2390563002: Reflow comments in core/html/forms/. (Closed)
Patch Set: Created 4 years, 2 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) 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
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
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698