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

Side by Side Diff: chrome/common/automation_messages.cc

Issue 6646005: Creates the ipclist utility that chrome security team has wanted to dump... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 9 years, 9 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
OLDNEW
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2010 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 "content/common/common_param_traits.h"
6
7 #define IPC_MESSAGE_IMPL
8 #include "chrome/common/automation_messages.h" 5 #include "chrome/common/automation_messages.h"
9 6
10 AutomationURLRequest::AutomationURLRequest() 7 AutomationURLRequest::AutomationURLRequest()
11 : resource_type(0), 8 : resource_type(0),
12 load_flags(0) { 9 load_flags(0) {
13 } 10 }
14 11
15 AutomationURLRequest::AutomationURLRequest( 12 AutomationURLRequest::AutomationURLRequest(
16 const std::string& in_url, 13 const std::string& in_url,
17 const std::string& in_method, 14 const std::string& in_method,
(...skipping 652 matching lines...) Expand 10 before | Expand all | Expand 10 after
670 l->append(", "); 667 l->append(", ");
671 LogParam(p.disposition, l); 668 LogParam(p.disposition, l);
672 l->append(", "); 669 l->append(", ");
673 LogParam(p.user_gesture, l); 670 LogParam(p.user_gesture, l);
674 l->append(","); 671 l->append(",");
675 LogParam(p.profile_name, l); 672 LogParam(p.profile_name, l);
676 l->append(")"); 673 l->append(")");
677 } 674 }
678 675
679 } // namespace IPC 676 } // namespace IPC
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698