OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 "mojo/shell/domain_socket/test_completion_callback.h" | 5 #include "shell/domain_socket/test_completion_callback.h" |
6 | 6 |
7 #include "base/bind.h" | 7 #include "base/bind.h" |
8 #include "base/bind_helpers.h" | 8 #include "base/bind_helpers.h" |
9 #include "base/compiler_specific.h" | 9 #include "base/compiler_specific.h" |
10 #include "base/message_loop/message_loop.h" | 10 #include "base/message_loop/message_loop.h" |
11 | 11 |
12 namespace mojo { | 12 namespace mojo { |
13 namespace shell { | 13 namespace shell { |
14 | 14 |
15 namespace internal { | 15 namespace internal { |
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
47 TestInt64CompletionCallback::TestInt64CompletionCallback() | 47 TestInt64CompletionCallback::TestInt64CompletionCallback() |
48 : callback_(base::Bind(&TestInt64CompletionCallback::SetResult, | 48 : callback_(base::Bind(&TestInt64CompletionCallback::SetResult, |
49 base::Unretained(this))) { | 49 base::Unretained(this))) { |
50 } | 50 } |
51 | 51 |
52 TestInt64CompletionCallback::~TestInt64CompletionCallback() { | 52 TestInt64CompletionCallback::~TestInt64CompletionCallback() { |
53 } | 53 } |
54 | 54 |
55 } // namespace net | 55 } // namespace net |
56 } // namespace net | 56 } // namespace net |
OLD | NEW |