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> |
11 #include <string> | 11 #include <string> |
12 #include <vector> | 12 #include <vector> |
13 | 13 |
14 #include "base/callback.h" | 14 #include "base/callback.h" |
15 #include "base/compiler_specific.h" | 15 #include "base/compiler_specific.h" |
16 #include "base/memory/scoped_ptr.h" | 16 #include "base/memory/scoped_ptr.h" |
17 #include "base/memory/weak_ptr.h" | 17 #include "base/memory/weak_ptr.h" |
18 #include "base/sequenced_task_runner_helpers.h" | 18 #include "base/sequenced_task_runner_helpers.h" |
19 #include "base/synchronization/waitable_event.h" | 19 #include "base/synchronization/waitable_event.h" |
20 #include "base/values.h" | 20 #include "base/values.h" |
21 #include "chrome/browser/autofill/personal_data_manager.h" | |
22 #include "chrome/browser/autofill/personal_data_manager_observer.h" | |
23 #include "chrome/browser/automation/automation_provider_json.h" | 21 #include "chrome/browser/automation/automation_provider_json.h" |
24 #include "chrome/browser/automation/automation_tab_helper.h" | 22 #include "chrome/browser/automation/automation_tab_helper.h" |
25 #include "chrome/browser/bookmarks/bookmark_model_observer.h" | 23 #include "chrome/browser/bookmarks/bookmark_model_observer.h" |
| 24 #include "components/autofill/browser/personal_data_manager.h" |
| 25 #include "components/autofill/browser/personal_data_manager_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/login_status_consumer.h" | 29 #include "chrome/browser/chromeos/login/login_status_consumer.h" |
30 #include "chrome/browser/chromeos/login/user_manager.h" | 30 #include "chrome/browser/chromeos/login/user_manager.h" |
31 #include "chrome/browser/chromeos/login/wizard_controller.h" | 31 #include "chrome/browser/chromeos/login/wizard_controller.h" |
32 #endif // defined(OS_CHROMEOS) | 32 #endif // defined(OS_CHROMEOS) |
33 #include "chrome/browser/common/cancelable_request.h" | 33 #include "chrome/browser/common/cancelable_request.h" |
34 #include "chrome/browser/download/all_download_item_notifier.h" | 34 #include "chrome/browser/download/all_download_item_notifier.h" |
35 #include "chrome/browser/history/history_service.h" | 35 #include "chrome/browser/history/history_service.h" |
(...skipping 1766 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1802 base::WeakPtr<AutomationProvider> automation_; | 1802 base::WeakPtr<AutomationProvider> automation_; |
1803 scoped_ptr<IPC::Message> reply_message_; | 1803 scoped_ptr<IPC::Message> reply_message_; |
1804 int new_window_id_; | 1804 int new_window_id_; |
1805 int num_loads_; | 1805 int num_loads_; |
1806 | 1806 |
1807 DISALLOW_COPY_AND_ASSIGN( | 1807 DISALLOW_COPY_AND_ASSIGN( |
1808 BrowserOpenedWithExistingProfileNotificationObserver); | 1808 BrowserOpenedWithExistingProfileNotificationObserver); |
1809 }; | 1809 }; |
1810 | 1810 |
1811 #endif // CHROME_BROWSER_AUTOMATION_AUTOMATION_PROVIDER_OBSERVERS_H_ | 1811 #endif // CHROME_BROWSER_AUTOMATION_AUTOMATION_PROVIDER_OBSERVERS_H_ |
OLD | NEW |