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

Side by Side Diff: third_party/WebKit/Source/core/html/HTMLInputElement.cpp

Issue 2812013004: Rewrite references to "wtf/" to "platform/wtf/" in core/{dom,html,xml}. (Closed)
Patch Set: Created 3 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 * (C) 2001 Dirk Mueller (mueller@kde.org) 4 * (C) 2001 Dirk Mueller (mueller@kde.org)
5 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Apple Inc. All 5 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Apple Inc. All
6 * rights reserved. 6 * rights reserved.
7 * (C) 2006 Alexey Proskuryakov (ap@nypop.com) 7 * (C) 2006 Alexey Proskuryakov (ap@nypop.com)
8 * Copyright (C) 2007 Samuel Weinig (sam@webkit.org) 8 * Copyright (C) 2007 Samuel Weinig (sam@webkit.org)
9 * Copyright (C) 2010 Google Inc. All rights reserved. 9 * Copyright (C) 2010 Google Inc. All rights reserved.
10 * Copyright (C) 2008 Torch Mobile Inc. All rights reserved. 10 * Copyright (C) 2008 Torch Mobile Inc. All rights reserved.
(...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after
66 #include "core/html/forms/InputType.h" 66 #include "core/html/forms/InputType.h"
67 #include "core/html/forms/SearchInputType.h" 67 #include "core/html/forms/SearchInputType.h"
68 #include "core/html/parser/HTMLParserIdioms.h" 68 #include "core/html/parser/HTMLParserIdioms.h"
69 #include "core/layout/LayoutObject.h" 69 #include "core/layout/LayoutObject.h"
70 #include "core/layout/LayoutTheme.h" 70 #include "core/layout/LayoutTheme.h"
71 #include "core/page/ChromeClient.h" 71 #include "core/page/ChromeClient.h"
72 #include "core/page/Page.h" 72 #include "core/page/Page.h"
73 #include "platform/Language.h" 73 #include "platform/Language.h"
74 #include "platform/RuntimeEnabledFeatures.h" 74 #include "platform/RuntimeEnabledFeatures.h"
75 #include "platform/text/PlatformLocale.h" 75 #include "platform/text/PlatformLocale.h"
76 #include "wtf/MathExtras.h" 76 #include "platform/wtf/MathExtras.h"
77 77
78 namespace blink { 78 namespace blink {
79 79
80 using ValueMode = InputType::ValueMode; 80 using ValueMode = InputType::ValueMode;
81 using namespace HTMLNames; 81 using namespace HTMLNames;
82 82
83 class ListAttributeTargetObserver : public IdTargetObserver { 83 class ListAttributeTargetObserver : public IdTargetObserver {
84 public: 84 public:
85 static ListAttributeTargetObserver* Create(const AtomicString& id, 85 static ListAttributeTargetObserver* Create(const AtomicString& id,
86 HTMLInputElement*); 86 HTMLInputElement*);
(...skipping 1800 matching lines...) Expand 10 before | Expand all | Expand 10 after
1887 1887
1888 bool HTMLInputElement::HasFallbackContent() const { 1888 bool HTMLInputElement::HasFallbackContent() const {
1889 return input_type_view_->HasFallbackContent(); 1889 return input_type_view_->HasFallbackContent();
1890 } 1890 }
1891 1891
1892 void HTMLInputElement::SetFilesFromPaths(const Vector<String>& paths) { 1892 void HTMLInputElement::SetFilesFromPaths(const Vector<String>& paths) {
1893 return input_type_->SetFilesFromPaths(paths); 1893 return input_type_->SetFilesFromPaths(paths);
1894 } 1894 }
1895 1895
1896 } // namespace blink 1896 } // namespace blink
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698