Chromium Code Reviews| Index: content/browser/devtools/protocol/security_handler.h |
| diff --git a/content/browser/devtools/protocol/security_handler.h b/content/browser/devtools/protocol/security_handler.h |
| index c9c90842efbc475cea2ff52d157179d9bc421d71..42c98cca9c39da213d6d7714fba5eb3e0acc730b 100644 |
| --- a/content/browser/devtools/protocol/security_handler.h |
| +++ b/content/browser/devtools/protocol/security_handler.h |
| @@ -5,6 +5,9 @@ |
| #ifndef CONTENT_BROWSER_DEVTOOLS_PROTOCOL_SECURITY_HANDLER_H_ |
| #define CONTENT_BROWSER_DEVTOOLS_PROTOCOL_SECURITY_HANDLER_H_ |
| +#include <string> |
| +#include <vector> |
|
Peter Kasting
2015/06/16 06:29:11
These #includes aren't necessary
estark
2015/06/16 15:32:35
Done.
|
| + |
| #include "content/browser/devtools/devtools_protocol_handler.h" |
| #include "content/browser/devtools/protocol/devtools_protocol_dispatcher.h" |
| #include "content/public/browser/web_contents_observer.h" |
| @@ -30,7 +33,9 @@ class SecurityHandler : public WebContentsObserver { |
| private: |
| // WebContentsObserver overrides |
| - void SecurityStyleChanged(SecurityStyle security_style) override; |
| + void SecurityStyleChanged( |
| + SecurityStyle security_style, |
| + const SecurityStyleExplanation& security_style_explanation) override; |
| scoped_ptr<Client> client_; |
| bool enabled_; |