| 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/logging.h" |
| 7 #include "base/strings/utf_string_conversions.h" | 8 #include "base/strings/utf_string_conversions.h" |
| 8 #include "components/url_formatter/elide_url.h" | 9 #include "components/url_formatter/elide_url.h" |
| 9 #include "content/public/browser/render_frame_host.h" | 10 #include "content/public/browser/render_frame_host.h" |
| 10 #include "content/public/browser/web_contents.h" | 11 #include "content/public/browser/web_contents.h" |
| 11 #include "extensions/browser/extension_registry.h" | 12 #include "extensions/browser/extension_registry.h" |
| 12 #include "extensions/common/constants.h" | 13 #include "extensions/common/constants.h" |
| 13 #include "ui/base/l10n/l10n_util.h" | 14 #include "ui/base/l10n/l10n_util.h" |
| 14 #include "url/origin.h" | 15 #include "url/origin.h" |
| 15 | 16 |
| 16 ChooserController::ChooserController(content::RenderFrameHost* owner, | 17 ChooserController::ChooserController(content::RenderFrameHost* owner, |
| (...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 59 return -1; | 60 return -1; |
| 60 } | 61 } |
| 61 | 62 |
| 62 bool ChooserController::IsConnected(size_t index) const { | 63 bool ChooserController::IsConnected(size_t index) const { |
| 63 return false; | 64 return false; |
| 64 } | 65 } |
| 65 | 66 |
| 66 bool ChooserController::IsPaired(size_t index) const { | 67 bool ChooserController::IsPaired(size_t index) const { |
| 67 return false; | 68 return false; |
| 68 } | 69 } |
| 70 |
| 71 void ChooserController::OpenAdapterOffHelpUrl() const { |
| 72 NOTREACHED(); |
| 73 } |
| OLD | NEW |