OLD | NEW |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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/services/public/cpp/view_manager/lib/view_manager_client_impl.h" | 5 #include "mojo/services/public/cpp/view_manager/lib/view_manager_client_impl.h" |
6 | 6 |
7 #include "base/bind.h" | 7 #include "base/bind.h" |
8 #include "base/message_loop/message_loop.h" | 8 #include "base/message_loop/message_loop.h" |
9 #include "base/stl_util.h" | 9 #include "base/stl_util.h" |
10 #include "mojo/public/cpp/application/application_connection.h" | 10 #include "mojo/public/cpp/application/application_connection.h" |
(...skipping 405 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
416 base::Unretained(this)); | 416 base::Unretained(this)); |
417 } | 417 } |
418 | 418 |
419 base::Callback<void(ErrorCode)> | 419 base::Callback<void(ErrorCode)> |
420 ViewManagerClientImpl::ActionCompletedCallbackWithErrorCode() { | 420 ViewManagerClientImpl::ActionCompletedCallbackWithErrorCode() { |
421 return base::Bind(&ViewManagerClientImpl::OnActionCompletedWithErrorCode, | 421 return base::Bind(&ViewManagerClientImpl::OnActionCompletedWithErrorCode, |
422 base::Unretained(this)); | 422 base::Unretained(this)); |
423 } | 423 } |
424 | 424 |
425 } // namespace mojo | 425 } // namespace mojo |
OLD | NEW |