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

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

Issue 6592071: Pepper/Flapper: Add an interface to do sync file ops on FileRefs. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/chrome/renderer
Patch Set: oops, forgot one 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
« no previous file with comments | « no previous file | content/browser/renderer_host/pepper_file_message_filter.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) 2010 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 #include "chrome/common/common_param_traits.h" 5 #include "chrome/common/common_param_traits.h"
6 6
7 #define IPC_MESSAGE_IMPL 7 #define IPC_MESSAGE_IMPL
8 #include "chrome/common/pepper_file_messages.h" 8 #include "chrome/common/pepper_file_messages.h"
9 9
10 namespace IPC { 10 namespace IPC {
11 11
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after
55 void ParamTraits<webkit::ppapi::PepperFilePath>::Log(const param_type& p, 55 void ParamTraits<webkit::ppapi::PepperFilePath>::Log(const param_type& p,
56 std::string* l) { 56 std::string* l) {
57 l->append("("); 57 l->append("(");
58 LogParam(static_cast<unsigned>(p.domain()), l); 58 LogParam(static_cast<unsigned>(p.domain()), l);
59 l->append(", "); 59 l->append(", ");
60 LogParam(p.path(), l); 60 LogParam(p.path(), l);
61 l->append(")"); 61 l->append(")");
62 } 62 }
63 63
64 } // namespace IPC 64 } // namespace IPC
OLDNEW
« no previous file with comments | « no previous file | content/browser/renderer_host/pepper_file_message_filter.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698