Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 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 "chrome/browser/chooser_controller/chooser_controller.h" | 5 #include "chrome/browser/chooser_controller/chooser_controller.h" |
| 6 | 6 |
| 7 #include "base/strings/utf_string_conversions.h" | 7 #include "base/strings/utf_string_conversions.h" |
| 8 #include "components/url_formatter/elide_url.h" | 8 #include "components/url_formatter/elide_url.h" |
| 9 #include "content/public/browser/render_frame_host.h" | 9 #include "content/public/browser/render_frame_host.h" |
| 10 #include "content/public/browser/web_contents.h" | 10 #include "content/public/browser/web_contents.h" |
| (...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 59 return -1; | 59 return -1; |
| 60 } | 60 } |
| 61 | 61 |
| 62 bool ChooserController::IsConnected(size_t index) const { | 62 bool ChooserController::IsConnected(size_t index) const { |
| 63 return false; | 63 return false; |
| 64 } | 64 } |
| 65 | 65 |
| 66 bool ChooserController::IsPaired(size_t index) const { | 66 bool ChooserController::IsPaired(size_t index) const { |
| 67 return false; | 67 return false; |
| 68 } | 68 } |
| 69 | |
| 70 void ChooserController::OpenAdapterOffHelpUrl() const {} | |
|
Jeffrey Yasskin
2016/09/28 23:12:23
Let's put a NOTREACHED() here, since we expect eve
juncai
2016/09/29 21:14:57
Done.
| |
| OLD | NEW |