| 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 "base/time.h" | |
| 9 #include "chrome/browser/browsing_data_remover.h" | 8 #include "chrome/browser/browsing_data_remover.h" |
| 10 #include "chrome/views/combo_box.h" | 9 #include "chrome/views/combo_box.h" |
| 11 #include "chrome/views/dialog_delegate.h" | 10 #include "chrome/views/dialog_delegate.h" |
| 12 #include "chrome/views/label.h" | 11 #include "chrome/views/label.h" |
| 13 #include "chrome/views/native_button.h" | 12 #include "chrome/views/native_button.h" |
| 14 #include "chrome/views/view.h" | 13 #include "chrome/views/view.h" |
| 15 | 14 |
| 16 namespace views { | 15 namespace views { |
| 17 class CheckBox; | 16 class CheckBox; |
| 18 class Label; | 17 class Label; |
| (...skipping 89 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 108 Profile* profile_; | 107 Profile* profile_; |
| 109 | 108 |
| 110 // If non-null it means removal is in progress. BrowsingDataRemover takes care | 109 // If non-null it means removal is in progress. BrowsingDataRemover takes care |
| 111 // of deleting itself when done. | 110 // of deleting itself when done. |
| 112 BrowsingDataRemover* remover_; | 111 BrowsingDataRemover* remover_; |
| 113 | 112 |
| 114 DISALLOW_EVIL_CONSTRUCTORS(ClearBrowsingDataView); | 113 DISALLOW_EVIL_CONSTRUCTORS(ClearBrowsingDataView); |
| 115 }; | 114 }; |
| 116 | 115 |
| 117 #endif // CHROME_BROWSER_VIEWS_CLEAR_BROWSING_DATA_H__ | 116 #endif // CHROME_BROWSER_VIEWS_CLEAR_BROWSING_DATA_H__ |
| OLD | NEW |