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

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

Issue 7055004: File upload API in chromedriver (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: Fixed according to the code review. Created 9 years, 6 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 1493 matching lines...) Expand 10 before | Expand all | Expand 10 after
1504 1504
1505 // Sends the |reply_message_| to |automation_| indicating we're done. 1505 // Sends the |reply_message_| to |automation_| indicating we're done.
1506 void RunOnUIThread(); 1506 void RunOnUIThread();
1507 1507
1508 base::WeakPtr<AutomationProvider> automation_; 1508 base::WeakPtr<AutomationProvider> automation_;
1509 scoped_ptr<IPC::Message> reply_message_; 1509 scoped_ptr<IPC::Message> reply_message_;
1510 1510
1511 DISALLOW_COPY_AND_ASSIGN(WaitForProcessLauncherThreadToGoIdleObserver); 1511 DISALLOW_COPY_AND_ASSIGN(WaitForProcessLauncherThreadToGoIdleObserver);
1512 }; 1512 };
1513 1513
1514 // Allows the automation provider to wait for acknowledgement that a drop
1515 // operation has been processed by the renderer.
1516 class DragTargetDropAckNotificationObserver : public NotificationObserver {
1517 public:
1518 DragTargetDropAckNotificationObserver(AutomationProvider* automation,
1519 IPC::Message* reply_message);
1520 virtual ~DragTargetDropAckNotificationObserver();
1521
1522 virtual void Observe(NotificationType type,
1523 const NotificationSource& source,
1524 const NotificationDetails& details);
1525
1526 private:
1527 NotificationRegistrar registrar_;
1528 base::WeakPtr<AutomationProvider> automation_;
1529 scoped_ptr<IPC::Message> reply_message_;
1530
1531 DISALLOW_COPY_AND_ASSIGN(DragTargetDropAckNotificationObserver);
1532 };
1533
1514 #endif // CHROME_BROWSER_AUTOMATION_AUTOMATION_PROVIDER_OBSERVERS_H_ 1534 #endif // CHROME_BROWSER_AUTOMATION_AUTOMATION_PROVIDER_OBSERVERS_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698