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

Unified Diff: mojo/public/cpp/bindings/passable.h

Issue 294833002: Mojo: more idiomatic C++ bindings (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix windows bustage Created 6 years, 7 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: mojo/public/cpp/bindings/passable.h
diff --git a/mojo/public/cpp/bindings/passable.h b/mojo/public/cpp/bindings/passable.h
deleted file mode 100644
index 0e109d6250a63d48dba3e38231381d7a98cf94ae..0000000000000000000000000000000000000000
--- a/mojo/public/cpp/bindings/passable.h
+++ /dev/null
@@ -1,73 +0,0 @@
-// Copyright 2013 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.
-
-#ifndef MOJO_PUBLIC_CPP_BINDINGS_PASSABLE_H_
-#define MOJO_PUBLIC_CPP_BINDINGS_PASSABLE_H_
-
-#include "mojo/public/cpp/bindings/lib/bindings_internal.h"
-#include "mojo/public/cpp/system/core.h"
-
-namespace mojo {
-
-template <typename HandleType>
-class Passable {
- public:
- // |ptr| may be null.
- explicit Passable(HandleType* ptr) : ptr_(ptr) {
- }
-
- bool is_valid() const {
- return ptr_ && ptr_->is_valid();
- }
-
- HandleType get() const {
- return ptr_ ? *ptr_ : HandleType();
- }
-
- HandleType release() MOJO_WARN_UNUSED_RESULT {
- return ptr_ ? internal::FetchAndReset(ptr_) : HandleType();
- }
-
- ScopedHandleBase<HandleType> Pass() {
- return ScopedHandleBase<HandleType>(release());
- }
-
- protected:
- Passable();
- // The default copy-ctor and operator= are OK.
-
- HandleType* ptr_;
-};
-
-template <typename HandleType>
-inline Passable<HandleType> MakePassable(HandleType* ptr) {
- return Passable<HandleType>(ptr);
-}
-
-template <typename HandleType>
-class AssignableAndPassable : public Passable<HandleType> {
- public:
- explicit AssignableAndPassable(HandleType* ptr) : Passable<HandleType>(ptr) {
- assert(ptr);
- }
-
- void operator=(ScopedHandleBase<HandleType> scoper) {
- reset(scoper.release());
- }
-
- void reset(HandleType obj = HandleType()) {
- ScopedHandleBase<HandleType>(*this->ptr_);
- this->ptr_->set_value(obj.value());
- }
-};
-
-template <typename HandleType>
-inline AssignableAndPassable<HandleType> MakeAssignableAndPassable(
- HandleType* ptr) {
- return AssignableAndPassable<HandleType>(ptr);
-}
-
-} // namespace mojo
-
-#endif // MOJO_PUBLIC_CPP_BINDINGS_PASSABLE_H_

Powered by Google App Engine
This is Rietveld 408576698