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

Unified Diff: ppapi/native_client/src/trusted/plugin/service_runtime.cc

Issue 9429066: Coverity: Fix a few pass-by-values. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Revert one. Created 8 years, 10 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « content/public/browser/gpu_data_manager.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ppapi/native_client/src/trusted/plugin/service_runtime.cc
diff --git a/ppapi/native_client/src/trusted/plugin/service_runtime.cc b/ppapi/native_client/src/trusted/plugin/service_runtime.cc
index f396a38ada0a90fbc3570c071fa6a0f88d69cef3..5d3ff8873922fc4d2fa4fb0e69a56c0d1070a136 100644
--- a/ppapi/native_client/src/trusted/plugin/service_runtime.cc
+++ b/ppapi/native_client/src/trusted/plugin/service_runtime.cc
@@ -466,9 +466,8 @@ void PluginReverseInterface::QuotaRequest_MainThreadResponse(
// request automatically deleted
}
-int64_t PluginReverseInterface::RequestQuotaForWrite(nacl::string file_id,
- int64_t offset,
- int64_t bytes_to_write) {
+int64_t PluginReverseInterface::RequestQuotaForWrite(
+ nacl::string file_id, int64_t offset, int64_t bytes_to_write) {
NaClLog(4,
"PluginReverseInterface::RequestQuotaForWrite:"
" (file_id='%s', offset=%"NACL_PRId64", bytes_to_write=%"
« no previous file with comments | « content/public/browser/gpu_data_manager.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698