| OLD | NEW |
| 1 // Copyright 2017 The Chromium Authors. All rights reserved. | 1 // Copyright 2017 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_UI_VIEWS_CHROME_CLEANER_DIALOG_H_ | 5 #ifndef CHROME_BROWSER_UI_VIEWS_CHROME_CLEANER_DIALOG_WIN_H_ |
| 6 #define CHROME_BROWSER_UI_VIEWS_CHROME_CLEANER_DIALOG_H_ | 6 #define CHROME_BROWSER_UI_VIEWS_CHROME_CLEANER_DIALOG_WIN_H_ |
| 7 | 7 |
| 8 #include <memory> | 8 #include <memory> |
| 9 | 9 |
| 10 #include "base/macros.h" | 10 #include "base/macros.h" |
| 11 #include "ui/views/controls/button/button.h" | 11 #include "ui/views/controls/button/button.h" |
| 12 #include "ui/views/window/dialog_delegate.h" | 12 #include "ui/views/window/dialog_delegate.h" |
| 13 | 13 |
| 14 class Browser; | 14 class Browser; |
| 15 | 15 |
| 16 namespace safe_browsing { | 16 namespace safe_browsing { |
| (...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 60 | 60 |
| 61 private: | 61 private: |
| 62 Browser* browser_; | 62 Browser* browser_; |
| 63 // The pointer will be set to nullptr once the controller has been notified of | 63 // The pointer will be set to nullptr once the controller has been notified of |
| 64 // user interaction since the controller can delete itself after that point. | 64 // user interaction since the controller can delete itself after that point. |
| 65 safe_browsing::ChromeCleanerDialogController* controller_; | 65 safe_browsing::ChromeCleanerDialogController* controller_; |
| 66 | 66 |
| 67 DISALLOW_COPY_AND_ASSIGN(ChromeCleanerDialog); | 67 DISALLOW_COPY_AND_ASSIGN(ChromeCleanerDialog); |
| 68 }; | 68 }; |
| 69 | 69 |
| 70 #endif // CHROME_BROWSER_UI_VIEWS_CHROME_CLEANER_DIALOG_H_ | 70 #endif // CHROME_BROWSER_UI_VIEWS_CHROME_CLEANER_DIALOG_WIN_H_ |
| OLD | NEW |