Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 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 | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 #include "webkit/tools/test_shell/webwidget_host.h" | |
| 6 | |
| 7 #include "base/message_loop.h" | |
| 8 | |
| 9 void WebWidgetHost::ScheduleAnimation() { | |
| 10 MessageLoop::current()->PostTask(FROM_HERE, | |
| 11 factory_.NewRunnableMethod(&WebWidgetHost::ScheduleComposite)); | |
| 12 } | |
| 13 | |
|
darin (slow to review)
2011/01/13 07:13:24
nit: extra whitespace at the end of the file
| |
| 14 | |
| OLD | NEW |