Chromium Code Reviews| Index: chrome/test/chromedriver/session.h |
| diff --git a/chrome/test/chromedriver/session.h b/chrome/test/chromedriver/session.h |
| index b582212bf16a656cc5498a839271952591482629..cee525a89292eeb184c736b0beecebfce54472c9 100644 |
| --- a/chrome/test/chromedriver/session.h |
| +++ b/chrome/test/chromedriver/session.h |
| @@ -86,6 +86,11 @@ struct Session { |
| // |CommandListener|s might be |CommandListenerProxy|s that forward to |
| // |DevToolsEventListener|s owned by |chrome|. |
| ScopedVector<CommandListener> command_listeners; |
| + std::string unexpected_alert_behaviour; |
| + static const char kAccept[]; |
|
gmanikpure
2016/11/04 00:23:24
As discussed, adding values of unexpectedalertbeha
samuong
2016/11/22 19:52:16
these don't need to be inside the Session class, y
gmanikpure
2016/11/23 18:34:26
Done.
|
| + static const char kDismiss[]; |
| + static const char kIgnore[]; |
| + std::string GetUnexpectedAlertBehaviour() const; |
|
samuong
2016/11/22 19:52:16
this is a method, so group it with the other metho
gmanikpure
2016/11/23 18:34:26
Done.
|
| }; |
| Session* GetThreadLocalSession(); |