| OLD | NEW |
| 1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2006-2008 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_VIEWS_CLEAR_BROWSING_DATA_H__ | 5 #ifndef CHROME_BROWSER_VIEWS_CLEAR_BROWSING_DATA_H_ |
| 6 #define CHROME_BROWSER_VIEWS_CLEAR_BROWSING_DATA_H__ | 6 #define CHROME_BROWSER_VIEWS_CLEAR_BROWSING_DATA_H_ |
| 7 | 7 |
| 8 #include "chrome/browser/browsing_data_remover.h" | 8 #include "chrome/browser/browsing_data_remover.h" |
| 9 #include "views/controls/button/button.h" | 9 #include "views/controls/button/button.h" |
| 10 #include "views/controls/combobox/combobox.h" | 10 #include "views/controls/combobox/combobox.h" |
| 11 #include "views/controls/label.h" | 11 #include "views/controls/label.h" |
| 12 #include "views/view.h" | 12 #include "views/view.h" |
| 13 #include "views/window/dialog_delegate.h" | 13 #include "views/window/dialog_delegate.h" |
| 14 | 14 |
| 15 namespace views { | 15 namespace views { |
| 16 class Checkbox; | 16 class Checkbox; |
| (...skipping 87 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 104 | 104 |
| 105 // Used to signal enabled/disabled state for controls in the UI. | 105 // Used to signal enabled/disabled state for controls in the UI. |
| 106 bool delete_in_progress_; | 106 bool delete_in_progress_; |
| 107 | 107 |
| 108 Profile* profile_; | 108 Profile* profile_; |
| 109 | 109 |
| 110 // If non-null it means removal is in progress. BrowsingDataRemover takes care | 110 // If non-null it means removal is in progress. BrowsingDataRemover takes care |
| 111 // of deleting itself when done. | 111 // of deleting itself when done. |
| 112 BrowsingDataRemover* remover_; | 112 BrowsingDataRemover* remover_; |
| 113 | 113 |
| 114 DISALLOW_EVIL_CONSTRUCTORS(ClearBrowsingDataView); | 114 DISALLOW_COPY_AND_ASSIGN(ClearBrowsingDataView); |
| 115 }; | 115 }; |
| 116 | 116 |
| 117 #endif // CHROME_BROWSER_VIEWS_CLEAR_BROWSING_DATA_H__ | 117 #endif // CHROME_BROWSER_VIEWS_CLEAR_BROWSING_DATA_H_ |
| OLD | NEW |