summaryrefslogtreecommitdiffstats
path: root/webkit/support/default_plugin_stubs_win.cc
blob: f728d1e924299fa9d334912044fed718021b3a43 (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
// 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.

// These are stubs for default_plugin which isn't currently built in
// a webkit only checkout.

#include "base/logging.h"
#include "third_party/npapi/bindings/npapi.h"
#include "third_party/npapi/bindings/nphostapi.h"

namespace default_plugin {

NPError API_CALL NP_GetEntryPoints(NPPluginFuncs* funcs) {
  NOTIMPLEMENTED();
  return NPERR_GENERIC_ERROR;
}

NPError API_CALL NP_Initialize(NPNetscapeFuncs* funcs) {
  NOTIMPLEMENTED();
  return NPERR_GENERIC_ERROR;
}

NPError API_CALL NP_Shutdown(void) {
  NOTIMPLEMENTED();
  return NPERR_GENERIC_ERROR;
}

}  // default_plugin