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

Side by Side Diff: base/ios/weak_nsobject_unittest.mm

Issue 1538743002: Switch to standard integer types in base/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: DEPS roll too Created 4 years, 12 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 | « base/ios/weak_nsobject.h ('k') | base/json/json_file_value_serializer.h » ('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 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 "base/basictypes.h"
6 #include "base/bind.h" 5 #include "base/bind.h"
7 #include "base/ios/weak_nsobject.h" 6 #include "base/ios/weak_nsobject.h"
8 #include "base/mac/scoped_nsobject.h" 7 #include "base/mac/scoped_nsobject.h"
9 #include "base/message_loop/message_loop.h" 8 #include "base/message_loop/message_loop.h"
10 #include "base/single_thread_task_runner.h" 9 #include "base/single_thread_task_runner.h"
11 #include "base/threading/thread.h" 10 #include "base/threading/thread.h"
12 #include "testing/gtest/include/gtest/gtest.h" 11 #include "testing/gtest/include/gtest/gtest.h"
13 12
14 namespace base { 13 namespace base {
15 namespace { 14 namespace {
(...skipping 115 matching lines...) Expand 10 before | Expand all | Expand 10 after
131 FROM_HERE, Bind(&CopyWeakNSObjectAndPost, weak, runner)); 130 FROM_HERE, Bind(&CopyWeakNSObjectAndPost, weak, runner));
132 other_thread.Stop(); 131 other_thread.Stop();
133 loop.RunUntilIdle(); 132 loop.RunUntilIdle();
134 133
135 // Check that TouchWeakData was called and the object touched twice. 134 // Check that TouchWeakData was called and the object touched twice.
136 EXPECT_EQ(2u, [data length]); 135 EXPECT_EQ(2u, [data length]);
137 } 136 }
138 137
139 } // namespace 138 } // namespace
140 } // namespace base 139 } // namespace base
OLDNEW
« no previous file with comments | « base/ios/weak_nsobject.h ('k') | base/json/json_file_value_serializer.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698