| OLD | NEW |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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_TESTING_AUTOMATION_PROVIDER_H_ | 5 #ifndef CHROME_BROWSER_AUTOMATION_TESTING_AUTOMATION_PROVIDER_H_ |
| 6 #define CHROME_BROWSER_AUTOMATION_TESTING_AUTOMATION_PROVIDER_H_ | 6 #define CHROME_BROWSER_AUTOMATION_TESTING_AUTOMATION_PROVIDER_H_ |
| 7 | 7 |
| 8 #include <map> | 8 #include <map> |
| 9 #include <string> | 9 #include <string> |
| 10 #include <vector> | 10 #include <vector> |
| 11 | 11 |
| 12 #include "base/basictypes.h" | 12 #include "base/basictypes.h" |
| 13 #include "base/compiler_specific.h" | 13 #include "base/compiler_specific.h" |
| 14 #include "base/memory/scoped_ptr.h" | 14 #include "base/memory/scoped_ptr.h" |
| 15 #include "chrome/browser/automation/automation_event_observers.h" | 15 #include "chrome/browser/automation/automation_event_observers.h" |
| 16 #include "chrome/browser/automation/automation_event_queue.h" | 16 #include "chrome/browser/automation/automation_event_queue.h" |
| 17 #include "chrome/browser/automation/automation_provider.h" | 17 #include "chrome/browser/automation/automation_provider.h" |
| 18 #include "chrome/browser/automation/automation_provider_json.h" | 18 #include "chrome/browser/automation/automation_provider_json.h" |
| 19 #include "chrome/browser/history/history_service.h" | 19 #include "chrome/browser/history/history_service.h" |
| 20 #include "chrome/browser/importer/importer_list_observer.h" | 20 #include "chrome/browser/importer/importer_list_observer.h" |
| 21 #include "chrome/browser/ui/browser_list_observer.h" | 21 #include "chrome/browser/ui/browser_list_observer.h" |
| 22 #include "content/public/browser/notification_registrar.h" | 22 #include "content/public/browser/notification_registrar.h" |
| 23 #include "content/public/common/page_type.h" | 23 #include "content/public/common/page_type.h" |
| 24 #include "content/public/common/security_style.h" | 24 #include "content/public/common/security_style.h" |
| 25 #include "net/base/cert_status_flags.h" | 25 #include "net/cert/cert_status_flags.h" |
| 26 #include "third_party/WebKit/Source/WebKit/chromium/public/WebInputEvent.h" | 26 #include "third_party/WebKit/Source/WebKit/chromium/public/WebInputEvent.h" |
| 27 | 27 |
| 28 #if defined(OS_CHROMEOS) | 28 #if defined(OS_CHROMEOS) |
| 29 // TODO(sque): move to a ChromeOS-specific class. See crosbug.com/22081. | 29 // TODO(sque): move to a ChromeOS-specific class. See crosbug.com/22081. |
| 30 class PowerManagerClientObserverForTesting; | 30 class PowerManagerClientObserverForTesting; |
| 31 #endif // defined(OS_CHROMEOS) | 31 #endif // defined(OS_CHROMEOS) |
| 32 | 32 |
| 33 class CreditCard; | 33 class CreditCard; |
| 34 class ImporterList; | 34 class ImporterList; |
| 35 | 35 |
| (...skipping 1479 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1515 scoped_ptr<AutomationEventQueue> automation_event_queue_; | 1515 scoped_ptr<AutomationEventQueue> automation_event_queue_; |
| 1516 | 1516 |
| 1517 // List of commands which just finish synchronously and don't require | 1517 // List of commands which just finish synchronously and don't require |
| 1518 // setting up an observer. | 1518 // setting up an observer. |
| 1519 static const int kSynchronousCommands[]; | 1519 static const int kSynchronousCommands[]; |
| 1520 | 1520 |
| 1521 DISALLOW_COPY_AND_ASSIGN(TestingAutomationProvider); | 1521 DISALLOW_COPY_AND_ASSIGN(TestingAutomationProvider); |
| 1522 }; | 1522 }; |
| 1523 | 1523 |
| 1524 #endif // CHROME_BROWSER_AUTOMATION_TESTING_AUTOMATION_PROVIDER_H_ | 1524 #endif // CHROME_BROWSER_AUTOMATION_TESTING_AUTOMATION_PROVIDER_H_ |
| OLD | NEW |