summaryrefslogtreecommitdiffstats
path: root/webkit/support/test_webplugin_page_delegate.h
blob: 1b4df8882e440314aa9a1a43dd659ef04278c9c1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
// Copyright (c) 2010 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.

#ifndef WEBKIT_SUPPORT_TEST_WEBPLUGIN_PAGE_DELEGATE_H_
#define WEBKIT_SUPPORT_TEST_WEBPLUGIN_PAGE_DELEGATE_H_

#include <string>

#include "webkit/plugins/npapi/webplugin_delegate_impl.h"
#include "webkit/plugins/npapi/webplugin_page_delegate.h"

namespace webkit_support {

class TestWebPluginPageDelegate : public webkit::npapi::WebPluginPageDelegate {
 public:
  TestWebPluginPageDelegate() {}
  virtual ~TestWebPluginPageDelegate() {}

  virtual webkit::npapi::WebPluginDelegate* CreatePluginDelegate(
      const FilePath& file_path,
      const std::string& mime_type) {
    // We don't need a valid native window handle in layout tests.
    // So just passing 0.
    return webkit::npapi::WebPluginDelegateImpl::Create(
        file_path, mime_type, 0);
  }
  virtual void CreatedPluginWindow(gfx::PluginWindowHandle handle) {}
  virtual void WillDestroyPluginWindow(gfx::PluginWindowHandle handle) {}
  virtual void DidMovePlugin(const webkit::npapi::WebPluginGeometry& move) {}
  virtual void DidStartLoadingForPlugin() {}
  virtual void DidStopLoadingForPlugin() {}
  virtual void ShowModalHTMLDialogForPlugin(
      const GURL& url,
      const gfx::Size& size,
      const std::string& json_arguments,
      std::string* json_retval) {}
  virtual WebKit::WebCookieJar* GetCookieJar() {
    return WebKit::webKitClient()->cookieJar();
  }
};

}  // namespace webkit_support

#endif  // WEBKIT_SUPPORT_TEST_WEBPLUGIN_PAGE_DELEGATE_H_