| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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_AUTOMATION_AUTOMATION_PROVIDER_OBSERVERS_H_ | 5 #ifndef CHROME_BROWSER_AUTOMATION_AUTOMATION_PROVIDER_OBSERVERS_H_ |
| 6 #define CHROME_BROWSER_AUTOMATION_AUTOMATION_PROVIDER_OBSERVERS_H_ | 6 #define CHROME_BROWSER_AUTOMATION_AUTOMATION_PROVIDER_OBSERVERS_H_ |
| 7 | 7 |
| 8 #include <deque> | 8 #include <deque> |
| 9 #include <map> | 9 #include <map> |
| 10 #include <set> | 10 #include <set> |
| (...skipping 14 matching lines...) Expand all Loading... |
| 25 #include "chrome/browser/bookmarks/bookmark_model_observer.h" | 25 #include "chrome/browser/bookmarks/bookmark_model_observer.h" |
| 26 #if defined(OS_CHROMEOS) | 26 #if defined(OS_CHROMEOS) |
| 27 #include "chrome/browser/chromeos/cros/network_library.h" | 27 #include "chrome/browser/chromeos/cros/network_library.h" |
| 28 #include "chrome/browser/chromeos/login/enrollment/enterprise_enrollment_screen.
h" | 28 #include "chrome/browser/chromeos/login/enrollment/enterprise_enrollment_screen.
h" |
| 29 #include "chrome/browser/chromeos/login/enrollment/enterprise_enrollment_screen_
actor.h" | 29 #include "chrome/browser/chromeos/login/enrollment/enterprise_enrollment_screen_
actor.h" |
| 30 #include "chrome/browser/chromeos/login/login_status_consumer.h" | 30 #include "chrome/browser/chromeos/login/login_status_consumer.h" |
| 31 #include "chrome/browser/chromeos/login/user_manager.h" | 31 #include "chrome/browser/chromeos/login/user_manager.h" |
| 32 #include "chrome/browser/chromeos/login/wizard_controller.h" | 32 #include "chrome/browser/chromeos/login/wizard_controller.h" |
| 33 #include "chrome/browser/chromeos/options/take_photo_dialog.h" | 33 #include "chrome/browser/chromeos/options/take_photo_dialog.h" |
| 34 #endif // defined(OS_CHROMEOS) | 34 #endif // defined(OS_CHROMEOS) |
| 35 #include "chrome/browser/cancelable_request.h" | 35 #include "chrome/browser/common/cancelable_request.h" |
| 36 #include "chrome/browser/history/history.h" | 36 #include "chrome/browser/history/history.h" |
| 37 #include "chrome/browser/history/history_types.h" | 37 #include "chrome/browser/history/history_types.h" |
| 38 #include "chrome/browser/importer/importer_data_types.h" | 38 #include "chrome/browser/importer/importer_data_types.h" |
| 39 #include "chrome/browser/importer/importer_progress_observer.h" | 39 #include "chrome/browser/importer/importer_progress_observer.h" |
| 40 #include "chrome/browser/memory_details.h" | 40 #include "chrome/browser/memory_details.h" |
| 41 #include "chrome/browser/password_manager/password_store_change.h" | 41 #include "chrome/browser/password_manager/password_store_change.h" |
| 42 #include "chrome/browser/password_manager/password_store_consumer.h" | 42 #include "chrome/browser/password_manager/password_store_consumer.h" |
| 43 #include "chrome/browser/search_engines/template_url_service_observer.h" | 43 #include "chrome/browser/search_engines/template_url_service_observer.h" |
| 44 #include "chrome/browser/ui/tabs/tab_strip_model.h" | 44 #include "chrome/browser/ui/tabs/tab_strip_model.h" |
| 45 #include "chrome/common/automation_constants.h" | 45 #include "chrome/common/automation_constants.h" |
| (...skipping 1781 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1827 base::WeakPtr<AutomationProvider> automation_; | 1827 base::WeakPtr<AutomationProvider> automation_; |
| 1828 scoped_ptr<IPC::Message> reply_message_; | 1828 scoped_ptr<IPC::Message> reply_message_; |
| 1829 int new_window_id_; | 1829 int new_window_id_; |
| 1830 int num_loads_; | 1830 int num_loads_; |
| 1831 | 1831 |
| 1832 DISALLOW_COPY_AND_ASSIGN( | 1832 DISALLOW_COPY_AND_ASSIGN( |
| 1833 BrowserOpenedWithExistingProfileNotificationObserver); | 1833 BrowserOpenedWithExistingProfileNotificationObserver); |
| 1834 }; | 1834 }; |
| 1835 | 1835 |
| 1836 #endif // CHROME_BROWSER_AUTOMATION_AUTOMATION_PROVIDER_OBSERVERS_H_ | 1836 #endif // CHROME_BROWSER_AUTOMATION_AUTOMATION_PROVIDER_OBSERVERS_H_ |
| OLD | NEW |