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 #pragma once | 7 #pragma once |
8 | 8 |
9 #include <deque> | 9 #include <deque> |
10 #include <map> | 10 #include <map> |
11 #include <set> | 11 #include <set> |
12 #include <string> | 12 #include <string> |
13 #include <vector> | 13 #include <vector> |
14 | 14 |
15 #include "base/callback.h" | 15 #include "base/callback.h" |
16 #include "base/compiler_specific.h" | 16 #include "base/compiler_specific.h" |
17 #include "base/memory/scoped_ptr.h" | 17 #include "base/memory/scoped_ptr.h" |
18 #include "base/memory/weak_ptr.h" | 18 #include "base/memory/weak_ptr.h" |
19 #include "base/message_loop_helpers.h" | 19 #include "base/sequenced_task_runner_helpers.h" |
20 #include "base/synchronization/waitable_event.h" | 20 #include "base/synchronization/waitable_event.h" |
21 #include "base/values.h" | 21 #include "base/values.h" |
22 #include "chrome/browser/autofill/personal_data_manager.h" | 22 #include "chrome/browser/autofill/personal_data_manager.h" |
23 #include "chrome/browser/autofill/personal_data_manager_observer.h" | 23 #include "chrome/browser/autofill/personal_data_manager_observer.h" |
24 #include "chrome/browser/automation/automation_provider_json.h" | 24 #include "chrome/browser/automation/automation_provider_json.h" |
25 #include "chrome/browser/automation/automation_tab_helper.h" | 25 #include "chrome/browser/automation/automation_tab_helper.h" |
26 #include "chrome/browser/bookmarks/bookmark_model_observer.h" | 26 #include "chrome/browser/bookmarks/bookmark_model_observer.h" |
27 #include "chrome/browser/browsing_data_remover.h" | 27 #include "chrome/browser/browsing_data_remover.h" |
28 #if defined(OS_CHROMEOS) | 28 #if defined(OS_CHROMEOS) |
29 #include "chrome/browser/chromeos/cros/network_library.h" | 29 #include "chrome/browser/chromeos/cros/network_library.h" |
(...skipping 1918 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1948 base::WeakPtr<AutomationProvider> automation_; | 1948 base::WeakPtr<AutomationProvider> automation_; |
1949 scoped_ptr<IPC::Message> reply_message_; | 1949 scoped_ptr<IPC::Message> reply_message_; |
1950 | 1950 |
1951 DISALLOW_COPY_AND_ASSIGN(WindowMaximizedObserver); | 1951 DISALLOW_COPY_AND_ASSIGN(WindowMaximizedObserver); |
1952 }; | 1952 }; |
1953 #endif // defined(OS_LINUX) | 1953 #endif // defined(OS_LINUX) |
1954 | 1954 |
1955 | 1955 |
1956 | 1956 |
1957 #endif // CHROME_BROWSER_AUTOMATION_AUTOMATION_PROVIDER_OBSERVERS_H_ | 1957 #endif // CHROME_BROWSER_AUTOMATION_AUTOMATION_PROVIDER_OBSERVERS_H_ |
OLD | NEW |