diff options
Diffstat (limited to 'webkit/port/bindings/v8/ScheduledAction.h')
-rw-r--r-- | webkit/port/bindings/v8/ScheduledAction.h | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/webkit/port/bindings/v8/ScheduledAction.h b/webkit/port/bindings/v8/ScheduledAction.h new file mode 100644 index 0000000..ea4be9b --- /dev/null +++ b/webkit/port/bindings/v8/ScheduledAction.h @@ -0,0 +1,21 @@ +// Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. +// Use of this source code is governed by a BSD-style license that can be +// found in the LICENSE file. + +#ifndef ScheduledAction_h +#define ScheduledAction_h + +namespace WebCore { + +class DOMWindow; + +class ScheduledAction { +public: + virtual ~ScheduledAction() { } + virtual void execute(DOMWindow* window) = 0; +}; + +} + +#endif + |