| OLD | NEW |
| 1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "config.h" | 5 #include "config.h" |
| 6 | 6 |
| 7 #include "base/compiler_specific.h" | 7 #include "base/compiler_specific.h" |
| 8 | 8 |
| 9 MSVC_PUSH_WARNING_LEVEL(0); | 9 MSVC_PUSH_WARNING_LEVEL(0); |
| 10 #include "CString.h" | 10 #include "CString.h" |
| 11 #include "Document.h" | 11 #include "Document.h" |
| 12 #include "DocumentLoader.h" | 12 #include "DocumentLoader.h" |
| 13 #include "FormData.h" | 13 #include "FormData.h" |
| 14 #include "FormDataList.h" | 14 #include "FormDataList.h" |
| 15 #include "FrameLoader.h" | 15 #include "FrameLoader.h" |
| 16 #include "HTMLFormControlElement.h" | 16 #include "HTMLFormControlElement.h" |
| 17 #include "HTMLFormElement.h" | 17 #include "HTMLFormElement.h" |
| 18 #include "HTMLOptionElement.h" | 18 #include "HTMLOptionElement.h" |
| 19 #include "HTMLInputElement.h" | 19 #include "HTMLInputElement.h" |
| 20 #include "HTMLNames.h" | 20 #include "HTMLNames.h" |
| 21 #include "HTMLOptionsCollection.h" | 21 #include "HTMLOptionsCollection.h" |
| 22 #include "HTMLSelectElement.h" | 22 #include "HTMLSelectElement.h" |
| 23 #include "ResourceRequest.h" | 23 #include "ResourceRequest.h" |
| 24 #include "TextEncoding.h" | 24 #include "TextEncoding.h" |
| 25 #include <wtf/Vector.h> | 25 #include <wtf/Vector.h> |
| 26 #pragma warning(pop) | 26 MSVC_POP_WARNING(); |
| 27 | 27 |
| 28 #undef LOG | 28 #undef LOG |
| 29 | 29 |
| 30 #include "base/basictypes.h" | 30 #include "base/basictypes.h" |
| 31 #include "base/string_util.h" | 31 #include "base/string_util.h" |
| 32 #include "webkit/glue/dom_operations.h" | 32 #include "webkit/glue/dom_operations.h" |
| 33 #include "webkit/glue/glue_util.h" | 33 #include "webkit/glue/glue_util.h" |
| 34 #include "webkit/glue/searchable_form_data.h" | 34 #include "webkit/glue/searchable_form_data.h" |
| 35 #include "webkit/glue/webframe_impl.h" | 35 #include "webkit/glue/webframe_impl.h" |
| 36 | 36 |
| (...skipping 341 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 378 SearchableFormData::SearchableFormData(const GURL& url, | 378 SearchableFormData::SearchableFormData(const GURL& url, |
| 379 const std::wstring& element_name, | 379 const std::wstring& element_name, |
| 380 const std::wstring& element_value, | 380 const std::wstring& element_value, |
| 381 const std::string& encoding) | 381 const std::string& encoding) |
| 382 : url_(url), | 382 : url_(url), |
| 383 element_name_(element_name), | 383 element_name_(element_name), |
| 384 element_value_(element_value), | 384 element_value_(element_value), |
| 385 encoding_(encoding) { | 385 encoding_(encoding) { |
| 386 } | 386 } |
| 387 | 387 |
| OLD | NEW |