Index: chrome/browser/chooser_controller/chooser_controller.h |
diff --git a/chrome/browser/chooser_controller/chooser_controller.h b/chrome/browser/chooser_controller/chooser_controller.h |
index 6a58361c614650682ac071d4dbbd71f466b32407..5ada3c7337f464ca827c6d74f769702895a63141 100644 |
--- a/chrome/browser/chooser_controller/chooser_controller.h |
+++ b/chrome/browser/chooser_controller/chooser_controller.h |
@@ -85,6 +85,12 @@ class ChooserController { |
// The |index|th option string which is listed in the chooser. |
virtual base::string16 GetOption(size_t index) const = 0; |
+ // Returns if the |index|th option is connected. |
Jeffrey Yasskin
2016/09/07 02:01:47
For virtual functions with a default, mention the
juncai
2016/09/09 20:06:15
Done.
|
+ virtual bool IsConnected(size_t index) const; |
+ |
+ // Returns if the |index|th option is paired. |
+ virtual bool IsPaired(size_t index) const; |
+ |
// Refresh the list of options. |
virtual void RefreshOptions() = 0; |