OLD | NEW |
1 // Copyright 2017 The Chromium Authors. All rights reserved. | 1 // Copyright 2017 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 "chromeos/components/tether/disconnect_tethering_operation.h" | 5 #include "chromeos/components/tether/disconnect_tethering_operation.h" |
6 | 6 |
7 #include "chromeos/components/tether/message_wrapper.h" | 7 #include "chromeos/components/tether/message_wrapper.h" |
8 #include "chromeos/components/tether/proto/tether.pb.h" | 8 #include "chromeos/components/tether/proto/tether.pb.h" |
9 #include "components/proximity_auth/logging/logging.h" | 9 #include "components/proximity_auth/logging/logging.h" |
10 | 10 |
(...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
79 } | 79 } |
80 | 80 |
81 void DisconnectTetheringOperation::OnOperationFinished() { | 81 void DisconnectTetheringOperation::OnOperationFinished() { |
82 NotifyObserversOperationFinished(has_authenticated_); | 82 NotifyObserversOperationFinished(has_authenticated_); |
83 } | 83 } |
84 | 84 |
85 MessageType DisconnectTetheringOperation::GetMessageTypeForConnection() { | 85 MessageType DisconnectTetheringOperation::GetMessageTypeForConnection() { |
86 return MessageType::DISCONNECT_TETHERING_REQUEST; | 86 return MessageType::DISCONNECT_TETHERING_REQUEST; |
87 } | 87 } |
88 | 88 |
| 89 bool DisconnectTetheringOperation::ShouldWaitForResponse() { |
| 90 return false; |
| 91 } |
| 92 |
89 } // namespace tether | 93 } // namespace tether |
90 | 94 |
91 } // namespace chromeos | 95 } // namespace chromeos |
OLD | NEW |