| 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" | 7 #include "wtf/ASCIICType.h" |
| 8 | 8 |
| 9 #undef LOG | 9 #undef LOG |
| 10 #include "webkit/glue/webplugin_impl.h" | 10 #include "webkit/glue/webplugin_impl.h" |
| (...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 43 NSLog(@"WebPluginContainer::GetPluginScriptableObject"); | 43 NSLog(@"WebPluginContainer::GetPluginScriptableObject"); |
| 44 } | 44 } |
| 45 | 45 |
| 46 WebCore::Widget* WebPluginImpl::Create(const GURL& url, | 46 WebCore::Widget* WebPluginImpl::Create(const GURL& url, |
| 47 char** argn, | 47 char** argn, |
| 48 char** argv, | 48 char** argv, |
| 49 int argc, | 49 int argc, |
| 50 WebCore::Element* element, | 50 WebCore::Element* element, |
| 51 WebFrameImpl* frame, | 51 WebFrameImpl* frame, |
| 52 WebPluginDelegate* delegate, | 52 WebPluginDelegate* delegate, |
| 53 bool load_manually) { | 53 bool load_manually, |
| 54 const std::string& mime_type) { |
| 54 // TODO(pinkerton): delete delegate when stubbing out? | 55 // TODO(pinkerton): delete delegate when stubbing out? |
| 55 NSLog(@"WebPluginImpl::Create"); | 56 NSLog(@"WebPluginImpl::Create"); |
| 56 return NULL; | 57 return NULL; |
| 57 } | 58 } |
| OLD | NEW |