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

Side by Side Diff: base/bind_internal.h

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_helpers.h ('k') | base/bind_internal_win.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 #ifndef BASE_BIND_INTERNAL_H_ 5 #ifndef BASE_BIND_INTERNAL_H_
6 #define BASE_BIND_INTERNAL_H_ 6 #define BASE_BIND_INTERNAL_H_
7 7
8 #include <stddef.h>
9
8 #include <type_traits> 10 #include <type_traits>
9 11
10 #include "base/bind_helpers.h" 12 #include "base/bind_helpers.h"
11 #include "base/callback_internal.h" 13 #include "base/callback_internal.h"
12 #include "base/memory/raw_scoped_refptr_mismatch_checker.h" 14 #include "base/memory/raw_scoped_refptr_mismatch_checker.h"
13 #include "base/memory/weak_ptr.h" 15 #include "base/memory/weak_ptr.h"
14 #include "base/template_util.h" 16 #include "base/template_util.h"
15 #include "base/tuple.h" 17 #include "base/tuple.h"
16 #include "build/build_config.h" 18 #include "build/build_config.h"
17 19
(...skipping 396 matching lines...) Expand 10 before | Expand all | Expand 10 after
414 416
415 static void Destroy(BindStateBase* self) { 417 static void Destroy(BindStateBase* self) {
416 delete static_cast<BindState*>(self); 418 delete static_cast<BindState*>(self);
417 } 419 }
418 }; 420 };
419 421
420 } // namespace internal 422 } // namespace internal
421 } // namespace base 423 } // namespace base
422 424
423 #endif // BASE_BIND_INTERNAL_H_ 425 #endif // BASE_BIND_INTERNAL_H_
OLDNEW
« no previous file with comments | « base/bind_helpers.h ('k') | base/bind_internal_win.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698