| Index: chrome/browser/automation/automation_provider_observers.h
|
| diff --git a/chrome/browser/automation/automation_provider_observers.h b/chrome/browser/automation/automation_provider_observers.h
|
| index ac4ef5dee75985673b41195d346b0bfa65bbe0aa..d929a9ce9cd6c5b2544c9ac9afce2fb95d5f29da 100644
|
| --- a/chrome/browser/automation/automation_provider_observers.h
|
| +++ b/chrome/browser/automation/automation_provider_observers.h
|
| @@ -1533,4 +1533,24 @@ class WaitForProcessLauncherThreadToGoIdleObserver
|
| DISALLOW_COPY_AND_ASSIGN(WaitForProcessLauncherThreadToGoIdleObserver);
|
| };
|
|
|
| +// Allows the automation provider to wait for acknowledgement that a drop
|
| +// operation has been processed by the renderer.
|
| +class DragTargetDropAckNotificationObserver : public NotificationObserver {
|
| + public:
|
| + DragTargetDropAckNotificationObserver(AutomationProvider* automation,
|
| + IPC::Message* reply_message);
|
| + virtual ~DragTargetDropAckNotificationObserver();
|
| +
|
| + virtual void Observe(NotificationType type,
|
| + const NotificationSource& source,
|
| + const NotificationDetails& details);
|
| +
|
| + private:
|
| + NotificationRegistrar registrar_;
|
| + base::WeakPtr<AutomationProvider> automation_;
|
| + scoped_ptr<IPC::Message> reply_message_;
|
| +
|
| + DISALLOW_COPY_AND_ASSIGN(DragTargetDropAckNotificationObserver);
|
| +};
|
| +
|
| #endif // CHROME_BROWSER_AUTOMATION_AUTOMATION_PROVIDER_OBSERVERS_H_
|
|
|