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

Side by Side Diff: ppapi/proxy/pepper_file_messages.cc

Issue 11443016: Revert 171080 (Closed) Base URL: svn://svn.chromium.org/chrome/branches/1349/src/
Patch Set: Created 8 years 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 | « ppapi/proxy/pepper_file_messages.h ('k') | ppapi/proxy/plugin_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) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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 5
6 // Get basic type definitions. 6 // Get basic type definitions.
7 #define IPC_MESSAGE_IMPL 7 #define IPC_MESSAGE_IMPL
8 #include "ppapi/proxy/pepper_file_messages.h" 8 #include "ppapi/proxy/pepper_file_messages.h"
9 9
10 // Generate constructors. 10 // Generate constructors.
(...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after
59 void ParamTraits<ppapi::PepperFilePath>::Log(const param_type& p, 59 void ParamTraits<ppapi::PepperFilePath>::Log(const param_type& p,
60 std::string* l) { 60 std::string* l) {
61 l->append("("); 61 l->append("(");
62 LogParam(static_cast<unsigned>(p.domain()), l); 62 LogParam(static_cast<unsigned>(p.domain()), l);
63 l->append(", "); 63 l->append(", ");
64 LogParam(p.path(), l); 64 LogParam(p.path(), l);
65 l->append(")"); 65 l->append(")");
66 } 66 }
67 67
68 } // namespace IPC 68 } // namespace IPC
OLDNEW
« no previous file with comments | « ppapi/proxy/pepper_file_messages.h ('k') | ppapi/proxy/plugin_dispatcher.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698