| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef CHROME_BROWSER_SUPERVISED_USER_SUPERVISED_USER_INTERSTITIAL_H_ | 5 #ifndef CHROME_BROWSER_SUPERVISED_USER_SUPERVISED_USER_INTERSTITIAL_H_ |
| 6 #define CHROME_BROWSER_SUPERVISED_USER_SUPERVISED_USER_INTERSTITIAL_H_ | 6 #define CHROME_BROWSER_SUPERVISED_USER_SUPERVISED_USER_INTERSTITIAL_H_ |
| 7 | 7 |
| 8 #include <string> | 8 #include <string> |
| 9 | 9 |
| 10 #include "base/callback.h" | 10 #include "base/callback.h" |
| (...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 52 content::WebContents* web_contents_; | 52 content::WebContents* web_contents_; |
| 53 | 53 |
| 54 content::InterstitialPage* interstitial_page_; // Owns us. | 54 content::InterstitialPage* interstitial_page_; // Owns us. |
| 55 | 55 |
| 56 PrefChangeRegistrar pref_change_registrar_; | 56 PrefChangeRegistrar pref_change_registrar_; |
| 57 | 57 |
| 58 GURL url_; | 58 GURL url_; |
| 59 | 59 |
| 60 base::Callback<void(bool)> callback_; | 60 base::Callback<void(bool)> callback_; |
| 61 | 61 |
| 62 bool back_button_pressed_; |
| 63 |
| 62 DISALLOW_COPY_AND_ASSIGN(SupervisedUserInterstitial); | 64 DISALLOW_COPY_AND_ASSIGN(SupervisedUserInterstitial); |
| 63 }; | 65 }; |
| 64 | 66 |
| 65 #endif // CHROME_BROWSER_SUPERVISED_USER_SUPERVISED_USER_INTERSTITIAL_H_ | 67 #endif // CHROME_BROWSER_SUPERVISED_USER_SUPERVISED_USER_INTERSTITIAL_H_ |
| OLD | NEW |