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

Side by Side Diff: content/public/common/webkit_param_traits.cc

Issue 8368004: Move common_param_traits and webkit_param_traits to content/public/common. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 9 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 | Annotate | Revision Log
« no previous file with comments | « content/public/common/webkit_param_traits.h ('k') | content/renderer/java_bridge_dispatcher.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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/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/common_param_traits.h"
12 #include "content/common/content_constants.h" 11 #include "content/common/content_constants.h"
12 #include "content/public/common/common_param_traits.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
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
OLDNEW
« no previous file with comments | « content/public/common/webkit_param_traits.h ('k') | content/renderer/java_bridge_dispatcher.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698