Chromium Code Reviews| Index: components/proximity_auth/screenlock_bridge.h |
| diff --git a/components/proximity_auth/screenlock_bridge.h b/components/proximity_auth/screenlock_bridge.h |
| index 45546094fc14b4aaa1d7adeb770c0ccc6f9e724f..dcd1b730e4d8717dd58facc87503cd8e90904855 100644 |
| --- a/components/proximity_auth/screenlock_bridge.h |
| +++ b/components/proximity_auth/screenlock_bridge.h |
| @@ -70,6 +70,18 @@ class ScreenlockBridge { |
| // Unlock, the icon will record metrics upon click. |
| void SetTrialRun(); |
| + std::string GetIDString() const; |
| + |
| + base::string16 tooltip() const { return tooltip_; } |
|
xiyuan
2017/06/06 19:27:53
nit: const base::string16& to avoid copying
same
xiaoyinh(OOO Sep 11-29)
2017/06/07 17:35:24
Done.
|
| + |
| + bool autoshow_tooltip() const { return autoshow_tooltip_; } |
| + |
| + base::string16 aria_label() const { return aria_label_; } |
| + |
| + bool hardlock_on_click() const { return hardlock_on_click_; } |
| + |
| + bool is_trial_run() const { return is_trial_run_; } |
| + |
| private: |
| UserPodCustomIcon icon_; |