| OLD | NEW |
| 1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2009 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_BOOKMARK_MANAGER_VIEW_H_ | 5 #ifndef CHROME_BROWSER_VIEWS_BOOKMARK_MANAGER_VIEW_H_ |
| 6 #define CHROME_BROWSER_VIEWS_BOOKMARK_MANAGER_VIEW_H_ | 6 #define CHROME_BROWSER_VIEWS_BOOKMARK_MANAGER_VIEW_H_ |
| 7 | 7 |
| 8 #include "base/keyboard_codes.h" | 8 #include "base/keyboard_codes.h" |
| 9 #include "base/ref_counted.h" | 9 #include "base/ref_counted.h" |
| 10 #include "base/task.h" | 10 #include "base/task.h" |
| (...skipping 211 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 222 // Import/export file dialog. | 222 // Import/export file dialog. |
| 223 scoped_refptr<SelectFileDialog> select_file_dialog_; | 223 scoped_refptr<SelectFileDialog> select_file_dialog_; |
| 224 | 224 |
| 225 // The sync status button that notifies the user about the current status of | 225 // The sync status button that notifies the user about the current status of |
| 226 // bookmarks synchronization. | 226 // bookmarks synchronization. |
| 227 views::TextButton* sync_status_button_; | 227 views::TextButton* sync_status_button_; |
| 228 | 228 |
| 229 // A pointer to the ProfileSyncService instance if one exists. | 229 // A pointer to the ProfileSyncService instance if one exists. |
| 230 ProfileSyncService* sync_service_; | 230 ProfileSyncService* sync_service_; |
| 231 | 231 |
| 232 // True if the cached credentials have expired and we need to prompt the |
| 233 // user to re-enter their password. |
| 234 bool sync_relogin_required_; |
| 235 |
| 232 // Factory used for delaying search. | 236 // Factory used for delaying search. |
| 233 ScopedRunnableMethodFactory<BookmarkManagerView> search_factory_; | 237 ScopedRunnableMethodFactory<BookmarkManagerView> search_factory_; |
| 234 | 238 |
| 235 DISALLOW_COPY_AND_ASSIGN(BookmarkManagerView); | 239 DISALLOW_COPY_AND_ASSIGN(BookmarkManagerView); |
| 236 }; | 240 }; |
| 237 | 241 |
| 238 #endif // CHROME_BROWSER_VIEWS_BOOKMARK_MANAGER_VIEW_H_ | 242 #endif // CHROME_BROWSER_VIEWS_BOOKMARK_MANAGER_VIEW_H_ |
| OLD | NEW |