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

Side by Side Diff: ash/wm_window_user_data_unittest.cc

Issue 2729363002: chromeos: Move files in //ash/common to //ash, part 3 (Closed)
Patch Set: Created 3 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 unified diff | Download patch
« no previous file with comments | « ash/wm_window_user_data.h ('k') | chrome/browser/DEPS » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2016 The Chromium Authors. All rights reserved. 1 // Copyright 2016 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 "ash/common/wm_window_user_data.h" 5 #include "ash/wm_window_user_data.h"
6 6
7 #include <memory> 7 #include <memory>
8 8
9 #include "ash/common/wm_shell.h"
10 #include "ash/common/wm_window.h"
11 #include "ash/common/wm_window_user_data.h"
12 #include "ash/test/ash_test.h" 9 #include "ash/test/ash_test.h"
10 #include "ash/wm_shell.h"
11 #include "ash/wm_window.h"
12 #include "ash/wm_window_user_data.h"
13 #include "base/memory/ptr_util.h" 13 #include "base/memory/ptr_util.h"
14 14
15 namespace ash { 15 namespace ash {
16 namespace { 16 namespace {
17 17
18 // Class that sets a bool* to true from the destructor. Used to track 18 // Class that sets a bool* to true from the destructor. Used to track
19 // destruction. 19 // destruction.
20 class Data { 20 class Data {
21 public: 21 public:
22 explicit Data(bool* delete_setter) : delete_setter_(delete_setter) {} 22 explicit Data(bool* delete_setter) : delete_setter_(delete_setter) {}
(...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after
72 bool data1_deleted = false; 72 bool data1_deleted = false;
73 user_data.Set(window, base::MakeUnique<Data>(&data1_deleted)); 73 user_data.Set(window, base::MakeUnique<Data>(&data1_deleted));
74 EXPECT_FALSE(data1_deleted); 74 EXPECT_FALSE(data1_deleted);
75 user_data.Set(window, nullptr); 75 user_data.Set(window, nullptr);
76 EXPECT_TRUE(data1_deleted); 76 EXPECT_TRUE(data1_deleted);
77 EXPECT_TRUE(user_data.GetWindows().empty()); 77 EXPECT_TRUE(user_data.GetWindows().empty());
78 window->Destroy(); 78 window->Destroy();
79 } 79 }
80 80
81 } // namespace ash 81 } // namespace ash
OLDNEW
« no previous file with comments | « ash/wm_window_user_data.h ('k') | chrome/browser/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698