diff options
Diffstat (limited to 'chrome/renderer/extensions/event_bindings.h')
-rw-r--r-- | chrome/renderer/extensions/event_bindings.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/chrome/renderer/extensions/event_bindings.h b/chrome/renderer/extensions/event_bindings.h index 893e3a6..59d26e6 100644 --- a/chrome/renderer/extensions/event_bindings.h +++ b/chrome/renderer/extensions/event_bindings.h @@ -1,4 +1,4 @@ -// Copyright (c) 2010 The Chromium Authors. All rights reserved. +// Copyright (c) 2011 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. @@ -12,6 +12,7 @@ class ExtensionDispatcher; class GURL; +class ListValue; class RenderThreadBase; class RenderView; @@ -45,7 +46,7 @@ class EventBindings { // v8::Undefined(). A DCHECK is setup to break if it is otherwise. static void CallFunction(const std::string& extension_id, const std::string& function_name, - int argc, v8::Handle<v8::Value>* argv, + const ListValue& arguments, RenderView* render_view, const GURL& event_url); }; |