| OLD | NEW |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 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 #ifndef MOJO_PUBLIC_CPP_BINDINGS_LIB_PICKLE_BUFFER_H_ | 5 #ifndef MOJO_PUBLIC_CPP_BINDINGS_LIB_PICKLE_BUFFER_H_ |
| 6 #define MOJO_PUBLIC_CPP_BINDINGS_LIB_PICKLE_BUFFER_H_ | 6 #define MOJO_PUBLIC_CPP_BINDINGS_LIB_PICKLE_BUFFER_H_ |
| 7 | 7 |
| 8 #include <stddef.h> |
| 9 |
| 8 #include "base/macros.h" | 10 #include "base/macros.h" |
| 9 #include "base/memory/scoped_ptr.h" | 11 #include "base/memory/scoped_ptr.h" |
| 10 #include "base/pickle.h" | 12 #include "base/pickle.h" |
| 11 #include "mojo/public/cpp/bindings/lib/buffer.h" | 13 #include "mojo/public/cpp/bindings/lib/buffer.h" |
| 12 | 14 |
| 13 namespace mojo { | 15 namespace mojo { |
| 14 namespace internal { | 16 namespace internal { |
| 15 | 17 |
| 16 // An implementation of Buffer which uses base::Pickle for its backing. Note | 18 // An implementation of Buffer which uses base::Pickle for its backing. Note |
| 17 // that this does not use Pickle's header structure at all, instead storing | 19 // that this does not use Pickle's header structure at all, instead storing |
| (...skipping 26 matching lines...) Expand all Loading... |
| 44 | 46 |
| 45 scoped_ptr<Storage> storage_; | 47 scoped_ptr<Storage> storage_; |
| 46 | 48 |
| 47 DISALLOW_COPY_AND_ASSIGN(PickleBuffer); | 49 DISALLOW_COPY_AND_ASSIGN(PickleBuffer); |
| 48 }; | 50 }; |
| 49 | 51 |
| 50 } // namespace internal | 52 } // namespace internal |
| 51 } // namespace mojo | 53 } // namespace mojo |
| 52 | 54 |
| 53 #endif // MOJO_PUBLIC_CPP_BINDINGS_LIB_PICKLE_BUFFER_H_ | 55 #endif // MOJO_PUBLIC_CPP_BINDINGS_LIB_PICKLE_BUFFER_H_ |
| OLD | NEW |