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

Side by Side Diff: Source/core/html/ValidityState.cpp

Issue 14488003: Absolutify paths to platform/. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: scripts, iwyu Created 7 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 | Annotate | Revision Log
« no previous file with comments | « Source/core/html/ValidationMessage.h ('k') | Source/core/html/WeekInputType.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * This file is part of the WebKit project. 2 * This file is part of the WebKit project.
3 * 3 *
4 * Copyright (C) 2009 Michelangelo De Simone <micdesim@gmail.com> 4 * Copyright (C) 2009 Michelangelo De Simone <micdesim@gmail.com>
5 * Copyright (C) 2010 Apple Inc. All rights reserved. 5 * Copyright (C) 2010 Apple Inc. All rights reserved.
6 * 6 *
7 * This library is free software; you can redistribute it and/or 7 * This library is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Library General Public 8 * modify it under the terms of the GNU Library General Public
9 * License as published by the Free Software Foundation; either 9 * License as published by the Free Software Foundation; either
10 * version 2 of the License, or (at your option) any later version. 10 * version 2 of the License, or (at your option) any later version.
(...skipping 11 matching lines...) Expand all
22 */ 22 */
23 23
24 #include "config.h" 24 #include "config.h"
25 #include "ValidityState.h" 25 #include "ValidityState.h"
26 26
27 #include "HTMLInputElement.h" 27 #include "HTMLInputElement.h"
28 #include "HTMLNames.h" 28 #include "HTMLNames.h"
29 #include "HTMLSelectElement.h" 29 #include "HTMLSelectElement.h"
30 #include "HTMLTextAreaElement.h" 30 #include "HTMLTextAreaElement.h"
31 #include "HTMLTreeBuilder.h" 31 #include "HTMLTreeBuilder.h"
32 #include "LocalizedStrings.h" 32 #include "core/platform/LocalizedStrings.h"
33 #include <wtf/StdLibExtras.h> 33 #include <wtf/StdLibExtras.h>
34 34
35 namespace WebCore { 35 namespace WebCore {
36 36
37 using namespace HTMLNames; 37 using namespace HTMLNames;
38 38
39 String ValidityState::validationMessage() const 39 String ValidityState::validationMessage() const
40 { 40 {
41 return m_control->validationMessage(); 41 return m_control->validationMessage();
42 } 42 }
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after
85 { 85 {
86 return m_control->customError(); 86 return m_control->customError();
87 } 87 }
88 88
89 bool ValidityState::valid() const 89 bool ValidityState::valid() const
90 { 90 {
91 return m_control->valid(); 91 return m_control->valid();
92 } 92 }
93 93
94 } // namespace 94 } // namespace
OLDNEW
« no previous file with comments | « Source/core/html/ValidationMessage.h ('k') | Source/core/html/WeekInputType.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698