Properly attach InfoBarContainer when it is swapped to a new WebContents
[chromium-blink-merge.git] / base / move_unittest.cc
blob1f4ce84cb6af4f1aac736704b271fea1b6fc4b19
1 // Copyright (c) 2015 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #include "base/move.h"
7 #include "testing/gtest/include/gtest/gtest.h"
9 namespace {
11 class MoveOnly {
12 MOVE_ONLY_TYPE_WITH_MOVE_CONSTRUCTOR_FOR_CPP_03(MoveOnly)
14 public:
15 MoveOnly() {}
17 MoveOnly(MoveOnly&& other) {}
18 MoveOnly& operator=(MoveOnly&& other) { return *this; }
21 class Container {
22 public:
23 Container() = default;
24 Container(const Container& other) = default;
25 Container& operator=(const Container& other) = default;
27 Container(Container&& other) { value_ = other.value_.Pass(); }
29 Container& operator=(Container&& other) {
30 value_ = other.value_.Pass();
31 return *this;
34 private:
35 MoveOnly value_;
38 Container GetContainerRvalue() {
39 Container x;
40 return x;
43 TEST(MoveTest, CopyableContainerCanBeMoved) {
44 // Container should be move-constructible and move-assignable.
45 Container y = GetContainerRvalue();
46 y = GetContainerRvalue();
49 } // namespace