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

Side by Side Diff: mojo/public/cpp/bindings/lib/array_internal.cc

Issue 220243007: Mojo: Move mojo/public/bindings/lib to mojo/public/cpp/bindings/lib. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 8 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
OLDNEW
1 // Copyright 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 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 "mojo/public/bindings/lib/array_internal.h" 5 #include "mojo/public/cpp/bindings/lib/array_internal.h"
6 6
7 namespace mojo { 7 namespace mojo {
8 namespace internal { 8 namespace internal {
9 9
10 ArrayDataTraits<bool>::BitRef::~BitRef() { 10 ArrayDataTraits<bool>::BitRef::~BitRef() {
11 } 11 }
12 12
13 ArrayDataTraits<bool>::BitRef::BitRef(uint8_t* storage, uint8_t mask) 13 ArrayDataTraits<bool>::BitRef::BitRef(uint8_t* storage, uint8_t mask)
14 : storage_(storage), 14 : storage_(storage),
15 mask_(mask) { 15 mask_(mask) {
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after
50 Message* message) { 50 Message* message) {
51 for (uint32_t i = 0; i < header->num_elements; ++i) { 51 for (uint32_t i = 0; i < header->num_elements; ++i) {
52 if (!DecodeHandle(&elements[i], message->mutable_handles())) 52 if (!DecodeHandle(&elements[i], message->mutable_handles()))
53 return false; 53 return false;
54 } 54 }
55 return true; 55 return true;
56 } 56 }
57 57
58 } // namespace internal 58 } // namespace internal
59 } // namespace mojo 59 } // namespace mojo
OLDNEW
« no previous file with comments | « mojo/public/cpp/bindings/lib/array_internal.h ('k') | mojo/public/cpp/bindings/lib/bindings_internal.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698