Chromium Code Reviews| Index: chrome/browser/nacl_host/nacl_browser_delegate_impl.h |
| diff --git a/chrome/browser/nacl_host/nacl_browser_delegate_impl.h b/chrome/browser/nacl_host/nacl_browser_delegate_impl.h |
| index 5907b3f067b3093d991a76eb016268398a53c762..4ffc170d27aec5d2458ab4a5e1d77374d4f528fb 100644 |
| --- a/chrome/browser/nacl_host/nacl_browser_delegate_impl.h |
| +++ b/chrome/browser/nacl_host/nacl_browser_delegate_impl.h |
| @@ -10,7 +10,9 @@ |
| #include "base/compiler_specific.h" |
| #include "components/nacl/browser/nacl_browser_delegate.h" |
|
Lei Zhang
2015/01/21 21:32:22
nit: blank line to separate the #if from the above
sehr
2015/01/22 19:57:22
Done.
|
| +#if defined(ENABLE_EXTENSIONS) |
| #include "extensions/common/url_pattern.h" |
| +#endif |
| namespace extensions { |
|
bbudge
2015/01/21 21:22:07
It seems strange that this isn't in the above #ifd
sehr
2015/01/22 19:57:22
Merged into the ifdef.
|
| class InfoMap; |
| @@ -51,7 +53,9 @@ class NaClBrowserDelegateImpl : public NaClBrowserDelegate { |
| #endif |
| ProfileManager* profile_manager_; |
| +#if defined(ENABLE_EXTENSIONS) |
| std::vector<URLPattern> debug_patterns_; |
| +#endif |
| bool inverse_debug_patterns_; |
| std::set<std::string> allowed_nonsfi_origins_; |
| DISALLOW_COPY_AND_ASSIGN(NaClBrowserDelegateImpl); |