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

Side by Side Diff: base/bind_unittest.nc

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/bind_unittest.cc ('k') | base/bits.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 (c) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 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 // This is a "No Compile Test" suite. 5 // This is a "No Compile Test" suite.
6 // http://dev.chromium.org/developers/testing/no-compile-tests 6 // http://dev.chromium.org/developers/testing/no-compile-tests
7 7
8 #include "base/bind.h"
8 #include "base/callback.h" 9 #include "base/callback.h"
9 #include "base/bind.h" 10 #include "base/macros.h"
10 #include "base/memory/ref_counted.h" 11 #include "base/memory/ref_counted.h"
11 12
12 namespace base { 13 namespace base {
13 14
14 // Do not put everything inside an anonymous namespace. If you do, many of the 15 // Do not put everything inside an anonymous namespace. If you do, many of the
15 // helper function declarations will generate unused definition warnings. 16 // helper function declarations will generate unused definition warnings.
16 17
17 static const int kParentValue = 1; 18 static const int kParentValue = 1;
18 static const int kChildValue = 2; 19 static const int kChildValue = 2;
19 20
(...skipping 176 matching lines...) Expand 10 before | Expand all | Expand 10 after
196 #elif defined(NCTEST_DISALLOW_ASSIGN_DIFFERENT_TYPES) // [r"fatal error: no via ble conversion from 'Callback<typename internal::BindState<typename internal::Fu nctorTraits<void \(\*\)\(int\)>::RunnableType, typename internal::FunctorTraits< void \(\*\)\(int\)>::RunType>::UnboundRunType>' to 'Callback<void \(\)>'"] 197 #elif defined(NCTEST_DISALLOW_ASSIGN_DIFFERENT_TYPES) // [r"fatal error: no via ble conversion from 'Callback<typename internal::BindState<typename internal::Fu nctorTraits<void \(\*\)\(int\)>::RunnableType, typename internal::FunctorTraits< void \(\*\)\(int\)>::RunType>::UnboundRunType>' to 'Callback<void \(\)>'"]
197 198
198 // Bind result cannot be assigned to Callbacks with a mismatching type. 199 // Bind result cannot be assigned to Callbacks with a mismatching type.
199 void WontCompile() { 200 void WontCompile() {
200 Closure callback_mismatches_bind_type = Bind(&VoidPolymorphic1<int>); 201 Closure callback_mismatches_bind_type = Bind(&VoidPolymorphic1<int>);
201 } 202 }
202 203
203 #endif 204 #endif
204 205
205 } // namespace base 206 } // namespace base
OLDNEW
« no previous file with comments | « base/bind_unittest.cc ('k') | base/bits.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698