| Index: webkit/tools/test_shell/mac/test_webview_delegate.mm
 | 
| ===================================================================
 | 
| --- webkit/tools/test_shell/mac/test_webview_delegate.mm	(revision 69765)
 | 
| +++ webkit/tools/test_shell/mac/test_webview_delegate.mm	(working copy)
 | 
| @@ -11,9 +11,9 @@
 | 
|  #include "third_party/WebKit/WebKit/chromium/public/WebPopupMenu.h"
 | 
|  #include "third_party/WebKit/WebKit/chromium/public/WebView.h"
 | 
|  #include "webkit/glue/webcursor.h"
 | 
| +#include "webkit/glue/plugins/plugin_list.h"
 | 
| +#include "webkit/glue/plugins/webplugin_delegate_impl.h"
 | 
|  #include "webkit/glue/webmenurunner_mac.h"
 | 
| -#include "webkit/plugins/npapi/plugin_list.h"
 | 
| -#include "webkit/plugins/npapi/webplugin_delegate_impl.h"
 | 
|  #include "webkit/tools/test_shell/test_shell.h"
 | 
|  
 | 
|  using WebKit::WebCursorInfo;
 | 
| @@ -168,7 +168,7 @@
 | 
|  
 | 
|  // WebPluginPageDelegate ------------------------------------------------------
 | 
|  
 | 
| -webkit::npapi::WebPluginDelegate* TestWebViewDelegate::CreatePluginDelegate(
 | 
| +webkit_glue::WebPluginDelegate* TestWebViewDelegate::CreatePluginDelegate(
 | 
|      const FilePath& path,
 | 
|      const std::string& mime_type) {
 | 
|    WebWidgetHost *host = GetWidgetHost();
 | 
| @@ -176,8 +176,7 @@
 | 
|      return NULL;
 | 
|  
 | 
|    gfx::PluginWindowHandle containing_view = NULL;
 | 
| -  return webkit::npapi::WebPluginDelegateImpl::Create(
 | 
| -      path, mime_type, containing_view);
 | 
| +  return WebPluginDelegateImpl::Create(path, mime_type, containing_view);
 | 
|  }
 | 
|  
 | 
|  void TestWebViewDelegate::CreatedPluginWindow(
 | 
| @@ -189,7 +188,7 @@
 | 
|  }
 | 
|  
 | 
|  void TestWebViewDelegate::DidMovePlugin(
 | 
| -    const webkit::npapi::WebPluginGeometry& move) {
 | 
| +    const webkit_glue::WebPluginGeometry& move) {
 | 
|    // TODO(port): add me once plugins work.
 | 
|  }
 | 
|  
 | 
| 
 |