| 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 210 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 221 // Import/export file dialog. | 221 // Import/export file dialog. |
| 222 scoped_refptr<SelectFileDialog> select_file_dialog_; | 222 scoped_refptr<SelectFileDialog> select_file_dialog_; |
| 223 | 223 |
| 224 // The sync status button that notifies the user about the current status of | 224 // The sync status button that notifies the user about the current status of |
| 225 // bookmarks synchronization. | 225 // bookmarks synchronization. |
| 226 views::TextButton* sync_status_button_; | 226 views::TextButton* sync_status_button_; |
| 227 | 227 |
| 228 // A pointer to the ProfileSyncService instance if one exists. | 228 // A pointer to the ProfileSyncService instance if one exists. |
| 229 ProfileSyncService* sync_service_; | 229 ProfileSyncService* sync_service_; |
| 230 | 230 |
| 231 // True if the cached credentials have expired and we need to prompt the |
| 232 // user to re-enter their password. |
| 233 bool sync_relogin_required_; |
| 234 |
| 231 // Factory used for delaying search. | 235 // Factory used for delaying search. |
| 232 ScopedRunnableMethodFactory<BookmarkManagerView> search_factory_; | 236 ScopedRunnableMethodFactory<BookmarkManagerView> search_factory_; |
| 233 | 237 |
| 234 DISALLOW_COPY_AND_ASSIGN(BookmarkManagerView); | 238 DISALLOW_COPY_AND_ASSIGN(BookmarkManagerView); |
| 235 }; | 239 }; |
| 236 | 240 |
| 237 #endif // CHROME_BROWSER_VIEWS_BOOKMARK_MANAGER_VIEW_H_ | 241 #endif // CHROME_BROWSER_VIEWS_BOOKMARK_MANAGER_VIEW_H_ |
| OLD | NEW |