| OLD | NEW |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 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 "blimp/client/feature/tab_control_feature.h" | 5 #include "blimp/client/core/contents/tab_control_feature.h" |
| 6 | 6 |
| 7 #include "blimp/common/create_blimp_message.h" | 7 #include "blimp/common/create_blimp_message.h" |
| 8 #include "blimp/common/proto/blimp_message.pb.h" | 8 #include "blimp/common/proto/blimp_message.pb.h" |
| 9 #include "blimp/common/proto/tab_control.pb.h" | 9 #include "blimp/common/proto/tab_control.pb.h" |
| 10 #include "blimp/net/blimp_message_processor.h" | 10 #include "blimp/net/blimp_message_processor.h" |
| 11 #include "net/base/net_errors.h" | 11 #include "net/base/net_errors.h" |
| 12 | 12 |
| 13 namespace blimp { | 13 namespace blimp { |
| 14 namespace client { | 14 namespace client { |
| 15 | 15 |
| (...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 63 std::unique_ptr<BlimpMessage> message, | 63 std::unique_ptr<BlimpMessage> message, |
| 64 const net::CompletionCallback& callback) { | 64 const net::CompletionCallback& callback) { |
| 65 DCHECK(!callback.is_null()); | 65 DCHECK(!callback.is_null()); |
| 66 callback.Run(net::OK); | 66 callback.Run(net::OK); |
| 67 | 67 |
| 68 NOTIMPLEMENTED(); | 68 NOTIMPLEMENTED(); |
| 69 } | 69 } |
| 70 | 70 |
| 71 } // namespace client | 71 } // namespace client |
| 72 } // namespace blimp | 72 } // namespace blimp |
| OLD | NEW |