| OLD | NEW |
| 1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "config.h" | 5 #include "config.h" |
| 6 | 6 |
| 7 #include "wtf/ASCIICType.h" |
| 8 |
| 9 #undef LOG |
| 7 #include "webkit/glue/webplugin_impl.h" | 10 #include "webkit/glue/webplugin_impl.h" |
| 8 | 11 |
| 9 // TODO(pinkerton): all of this needs to be filled in. webplugin_impl.cc has | 12 // TODO(pinkerton): all of this needs to be filled in. webplugin_impl.cc has |
| 10 // a lot of win32-specific code in it that needs to be re-factored. | 13 // a lot of win32-specific code in it that needs to be re-factored. |
| 11 | 14 |
| 12 //WebPluginContainer::WebPluginContainer(WebPluginImpl* impl); | 15 //WebPluginContainer::WebPluginContainer(WebPluginImpl* impl); |
| 13 //WebPluginContainer::~WebPluginContainer(); | 16 //WebPluginContainer::~WebPluginContainer(); |
| 14 //WebCore::IntRect WebPluginContainer::windowClipRect() const; | 17 //WebCore::IntRect WebPluginContainer::windowClipRect() const; |
| 15 //void WebPluginContainer::geometryChanged() const; | 18 //void WebPluginContainer::geometryChanged() const; |
| 16 //void WebPluginContainer::setFrameGeometry(const WebCore::IntRect& rect); | 19 //void WebPluginContainer::setFrameGeometry(const WebCore::IntRect& rect); |
| (...skipping 28 matching lines...) Expand all Loading... |
| 45 char** argv, | 48 char** argv, |
| 46 int argc, | 49 int argc, |
| 47 WebCore::Element* element, | 50 WebCore::Element* element, |
| 48 WebFrameImpl* frame, | 51 WebFrameImpl* frame, |
| 49 WebPluginDelegate* delegate, | 52 WebPluginDelegate* delegate, |
| 50 bool load_manually) { | 53 bool load_manually) { |
| 51 // TODO(pinkerton): delete delegate when stubbing out? | 54 // TODO(pinkerton): delete delegate when stubbing out? |
| 52 NSLog(@"WebPluginImpl::Create"); | 55 NSLog(@"WebPluginImpl::Create"); |
| 53 return NULL; | 56 return NULL; |
| 54 } | 57 } |
| OLD | NEW |