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_SAFE_BROWSING_CHROME_CLEANER_DIALOG_CONTROLLER_H_ | 5 #ifndef CHROME_BROWSER_SAFE_BROWSING_CHROME_CLEANER_CHROME_CLEANER_DIALOG_CONTRO
LLER_H_ |
6 #define CHROME_BROWSER_SAFE_BROWSING_CHROME_CLEANER_DIALOG_CONTROLLER_H_ | 6 #define CHROME_BROWSER_SAFE_BROWSING_CHROME_CLEANER_CHROME_CLEANER_DIALOG_CONTRO
LLER_H_ |
7 | 7 |
8 #include <vector> | 8 #include <vector> |
9 | 9 |
10 #include "base/macros.h" | 10 #include "base/macros.h" |
11 #include "base/strings/string16.h" | 11 #include "base/strings/string16.h" |
12 | 12 |
13 namespace safe_browsing { | 13 namespace safe_browsing { |
14 | 14 |
15 // Provides the various elements that will be displayed in the Chrome Cleaner | 15 // Provides the various elements that will be displayed in the Chrome Cleaner |
16 // UI. Also provides functions, such as |Accept()| and |Cancel()|, that should | 16 // UI. Also provides functions, such as |Accept()| and |Cancel()|, that should |
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
55 ~ChromeCleanerDialogController(); | 55 ~ChromeCleanerDialogController(); |
56 | 56 |
57 private: | 57 private: |
58 void OnInteractionDone(); | 58 void OnInteractionDone(); |
59 | 59 |
60 DISALLOW_COPY_AND_ASSIGN(ChromeCleanerDialogController); | 60 DISALLOW_COPY_AND_ASSIGN(ChromeCleanerDialogController); |
61 }; | 61 }; |
62 | 62 |
63 } // namespace safe_browsing | 63 } // namespace safe_browsing |
64 | 64 |
65 #endif // CHROME_BROWSER_SAFE_BROWSING_CHROME_CLEANER_DIALOG_CONTROLLER_H_ | 65 #endif // CHROME_BROWSER_SAFE_BROWSING_CHROME_CLEANER_CHROME_CLEANER_DIALOG_CON
TROLLER_H_ |
OLD | NEW |