| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 // NOTE: New trait definitions that will be used by Chrome Frame must be placed | 5 // NOTE: New trait definitions that will be used by Chrome Frame must be placed |
| 6 // in common_param_traits2.cc. | 6 // in common_param_traits2.cc. |
| 7 | 7 |
| 8 #include "content/public/common/webkit_param_traits.h" | 8 #include "content/public/common/webkit_param_traits.h" |
| 9 | 9 |
| 10 #include "base/string_number_conversions.h" | 10 #include "base/string_number_conversions.h" |
| 11 #include "content/common/content_constants.h" | |
| 12 #include "content/public/common/common_param_traits.h" | 11 #include "content/public/common/common_param_traits.h" |
| 12 #include "content/public/common/content_constants.h" |
| 13 #include "third_party/WebKit/Source/WebKit/chromium/public/WebBindings.h" | 13 #include "third_party/WebKit/Source/WebKit/chromium/public/WebBindings.h" |
| 14 #include "webkit/glue/password_form.h" | 14 #include "webkit/glue/password_form.h" |
| 15 #include "webkit/glue/resource_loader_bridge.h" | 15 #include "webkit/glue/resource_loader_bridge.h" |
| 16 | 16 |
| 17 NPIdentifier_Param::NPIdentifier_Param() | 17 NPIdentifier_Param::NPIdentifier_Param() |
| 18 : identifier() { | 18 : identifier() { |
| 19 } | 19 } |
| 20 | 20 |
| 21 NPIdentifier_Param::~NPIdentifier_Param() { | 21 NPIdentifier_Param::~NPIdentifier_Param() { |
| 22 } | 22 } |
| (...skipping 315 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 338 ReadParam(m, iter, &p->ssl_valid) && | 338 ReadParam(m, iter, &p->ssl_valid) && |
| 339 ReadParam(m, iter, &p->preferred) && | 339 ReadParam(m, iter, &p->preferred) && |
| 340 ReadParam(m, iter, &p->blacklisted_by_user); | 340 ReadParam(m, iter, &p->blacklisted_by_user); |
| 341 } | 341 } |
| 342 void ParamTraits<webkit_glue::PasswordForm>::Log(const param_type& p, | 342 void ParamTraits<webkit_glue::PasswordForm>::Log(const param_type& p, |
| 343 std::string* l) { | 343 std::string* l) { |
| 344 l->append("<PasswordForm>"); | 344 l->append("<PasswordForm>"); |
| 345 } | 345 } |
| 346 | 346 |
| 347 } // namespace IPC | 347 } // namespace IPC |
| OLD | NEW |