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

Unified Diff: chrome/browser/automation/ui_controls_internal.h

Issue 5841002: Finish deinlining virtual methods. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: revert parts of the balloon modifications Created 10 years 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/automation/ui_controls_internal.h
diff --git a/chrome/browser/automation/ui_controls_internal.h b/chrome/browser/automation/ui_controls_internal.h
index 88631c963c70d4034f819fd3de7af58254971230..7299b9b05a503c11380b9bd26756615635830947 100644
--- a/chrome/browser/automation/ui_controls_internal.h
+++ b/chrome/browser/automation/ui_controls_internal.h
@@ -16,18 +16,9 @@ class ClickTask : public Task {
public:
// A |followup| Task can be specified to notify the caller when the mouse
// click event is sent. If can be NULL if the caller does not care about it.
- ClickTask(MouseButton button, int state, Task* followup)
- : button_(button), state_(state), followup_(followup) {
- }
-
- virtual ~ClickTask() {}
-
- virtual void Run() {
- if (followup_)
- SendMouseEventsNotifyWhenDone(button_, state_, followup_);
- else
- SendMouseEvents(button_, state_);
- }
+ ClickTask(MouseButton button, int state, Task* followup);
+ virtual ~ClickTask();
+ virtual void Run();
private:
MouseButton button_;
« no previous file with comments | « no previous file | chrome/browser/automation/ui_controls_internal.cc » ('j') | chrome/browser/device_orientation/provider_impl.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698