summaryrefslogtreecommitdiffstats
path: root/ppapi/cpp/private/internal_module.h
blob: 5bc4191b42f3f8a396d2c9b652a5f3b14cc78027 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// Copyright (c) 2014 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 PPAPI_CPP_PRIVATE_INTERNAL_MODULE_H_
#define PPAPI_CPP_PRIVATE_INTERNAL_MODULE_H_

namespace pp {
class Module;

// Forcibly sets the value returned by pp::Module::Get(). Do not call this
// function except to support the trusted plugin or the remoting plugin!
void InternalSetModuleSingleton(Module* module);
}

#endif  // PPAPI_CPP_PRIVATE_INTERNAL_MODULE_H_