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

Unified Diff: ppapi/cpp/array_output.cc

Issue 9651002: Add C++ wrappers for output parameters. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 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 side-by-side diff with in-line comments
Download patch
Index: ppapi/cpp/array_output.cc
diff --git a/ppapi/cpp/array_output.cc b/ppapi/cpp/array_output.cc
new file mode 100644
index 0000000000000000000000000000000000000000..0ef4df6293086813d9fab9c68b3a367d5cf4bf6a
--- /dev/null
+++ b/ppapi/cpp/array_output.cc
@@ -0,0 +1,51 @@
+// Copyright (c) 2012 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#include "ppapi/cpp/array_output.h"
+
+#include "ppapi/cpp/logging.h"
+
+namespace pp {
+
+// static
+void* ArrayOutputAdapterBase::GetDataBufferThunk(void* user_data,
+ uint32_t element_count,
+ uint32_t element_size) {
+ return static_cast<ArrayOutputAdapterBase*>(user_data)->
+ GetDataBuffer(element_count, element_size);
+}
+
+VarArrayOutputAdapterWithStorage::VarArrayOutputAdapterWithStorage()
+ : ArrayOutputAdapter<PP_Var>() {
+ set_output(&temp_storage_);
+}
+
+VarArrayOutputAdapterWithStorage::VarArrayOutputAdapterWithStorage(
+ const VarArrayOutputAdapterWithStorage& other)
+ : ArrayOutputAdapter<PP_Var>() {
+ // We can't actually make copies of this adapter once it's been used. But
+ // we need to support copying before it's been used because the completion
+ // callback factory uses this. So ensure that we're empty.
dmichael (off chromium) 2012/03/09 18:23:27 Ah. A comment of explanation in the header or a re
+ PP_DCHECK(other.temp_storage_.empty());
+ set_output(&temp_storage_);
+}
+
+VarArrayOutputAdapterWithStorage&
+VarArrayOutputAdapterWithStorage::operator=(
+ const VarArrayOutputAdapterWithStorage& other) {
+ set_output(&temp_storage_);
+ return *this;
+}
+
+std::vector<Var>& VarArrayOutputAdapterWithStorage::output() {
+ PP_DCHECK(output_storage_.empty());
+
+ output_storage_.reserve(temp_storage_.size());
+ for (size_t i = 0; i < temp_storage_.size(); i++)
+ output_storage_.push_back(Var(PASS_REF, temp_storage_[i]));
+ temp_storage_.clear();
+ return output_storage_;
+}
+
+} // namespace pp

Powered by Google App Engine
This is Rietveld 408576698