Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(30)

Side by Side Diff: chrome/browser/automation/automation_provider_observers.h

Issue 7618048: Move the core download files to content. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 9 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 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>
(...skipping 13 matching lines...) Expand all
24 #if defined(OS_CHROMEOS) 24 #if defined(OS_CHROMEOS)
25 #include "chrome/browser/chromeos/cros/network_library.h" 25 #include "chrome/browser/chromeos/cros/network_library.h"
26 #include "chrome/browser/chromeos/login/enterprise_enrollment_screen.h" 26 #include "chrome/browser/chromeos/login/enterprise_enrollment_screen.h"
27 #include "chrome/browser/chromeos/login/enterprise_enrollment_screen_actor.h" 27 #include "chrome/browser/chromeos/login/enterprise_enrollment_screen_actor.h"
28 #include "chrome/browser/chromeos/login/enterprise_enrollment_view.h" 28 #include "chrome/browser/chromeos/login/enterprise_enrollment_view.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 #include "chrome/browser/chromeos/options/take_photo_dialog.h" 32 #include "chrome/browser/chromeos/options/take_photo_dialog.h"
33 #endif // defined(OS_CHROMEOS) 33 #endif // defined(OS_CHROMEOS)
34 #include "chrome/browser/download/download_item.h"
35 #include "chrome/browser/download/download_manager.h"
36 #include "chrome/browser/history/history.h" 34 #include "chrome/browser/history/history.h"
37 #include "chrome/browser/history/history_types.h" 35 #include "chrome/browser/history/history_types.h"
38 #include "chrome/browser/importer/importer_data_types.h" 36 #include "chrome/browser/importer/importer_data_types.h"
39 #include "chrome/browser/importer/importer_progress_observer.h" 37 #include "chrome/browser/importer/importer_progress_observer.h"
40 #include "chrome/browser/password_manager/password_store_change.h" 38 #include "chrome/browser/password_manager/password_store_change.h"
41 #include "chrome/browser/password_manager/password_store_consumer.h" 39 #include "chrome/browser/password_manager/password_store_consumer.h"
42 #include "chrome/browser/policy/browser_policy_connector.h" 40 #include "chrome/browser/policy/browser_policy_connector.h"
43 #include "chrome/browser/policy/cloud_policy_subsystem.h" 41 #include "chrome/browser/policy/cloud_policy_subsystem.h"
44 #include "chrome/browser/search_engines/template_url_service_observer.h" 42 #include "chrome/browser/search_engines/template_url_service_observer.h"
45 #include "chrome/browser/tabs/tab_strip_model.h" 43 #include "chrome/browser/tabs/tab_strip_model.h"
46 #include "chrome/common/automation_constants.h" 44 #include "chrome/common/automation_constants.h"
47 #include "chrome/common/extensions/extension_constants.h" 45 #include "chrome/common/extensions/extension_constants.h"
48 #include "content/browser/cancelable_request.h" 46 #include "content/browser/cancelable_request.h"
47 #include "content/browser/download/download_item.h"
48 #include "content/browser/download/download_manager.h"
49 #include "content/common/content_notification_types.h" 49 #include "content/common/content_notification_types.h"
50 #include "content/common/notification_observer.h" 50 #include "content/common/notification_observer.h"
51 #include "content/common/notification_registrar.h" 51 #include "content/common/notification_registrar.h"
52 #include "ui/gfx/size.h" 52 #include "ui/gfx/size.h"
53 53
54 class AutocompleteEditModel; 54 class AutocompleteEditModel;
55 class AutomationProvider; 55 class AutomationProvider;
56 class BalloonCollection; 56 class BalloonCollection;
57 class Browser; 57 class Browser;
58 class Extension; 58 class Extension;
(...skipping 1596 matching lines...) Expand 10 before | Expand all | Expand 10 after
1655 1655
1656 private: 1656 private:
1657 NotificationRegistrar registrar_; 1657 NotificationRegistrar registrar_;
1658 base::WeakPtr<AutomationProvider> automation_; 1658 base::WeakPtr<AutomationProvider> automation_;
1659 scoped_ptr<IPC::Message> reply_message_; 1659 scoped_ptr<IPC::Message> reply_message_;
1660 1660
1661 DISALLOW_COPY_AND_ASSIGN(DragTargetDropAckNotificationObserver); 1661 DISALLOW_COPY_AND_ASSIGN(DragTargetDropAckNotificationObserver);
1662 }; 1662 };
1663 1663
1664 #endif // CHROME_BROWSER_AUTOMATION_AUTOMATION_PROVIDER_OBSERVERS_H_ 1664 #endif // CHROME_BROWSER_AUTOMATION_AUTOMATION_PROVIDER_OBSERVERS_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698