| Index: chrome/renderer/external_host_bindings.h
|
| ===================================================================
|
| --- chrome/renderer/external_host_bindings.h (revision 22886)
|
| +++ chrome/renderer/external_host_bindings.h (working copy)
|
| @@ -29,7 +29,8 @@
|
| const std::string& target);
|
|
|
| // Overridden to hold onto a pointer back to the web frame.
|
| - void BindToJavascript(WebFrame* frame, const std::wstring& classname) {
|
| + void BindToJavascript(WebKit::WebFrame* frame,
|
| + const std::wstring& classname) {
|
| frame_ = frame;
|
| DOMBoundBrowserObject::BindToJavascript(frame, classname);
|
| }
|
| @@ -42,7 +43,7 @@
|
|
|
| private:
|
| CppVariant on_message_handler_;
|
| - WebFrame* frame_;
|
| + WebKit::WebFrame* frame_;
|
|
|
| DISALLOW_COPY_AND_ASSIGN(ExternalHostBindings);
|
| };
|
|
|