Pepper_56_C++_interfaces
Pepper_56_C++_interfaces
 All Classes Namespaces Files Functions Typedefs Enumerations Macros Groups
extension_system_samsung.h
Go to the documentation of this file.
1 // Copyright 2016 Samsung Electronics. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4 
5 #ifndef PPAPI_CPP_SAMSUNG_EXTENSION_SYSTEM_SAMSUNG_H_
6 #define PPAPI_CPP_SAMSUNG_EXTENSION_SYSTEM_SAMSUNG_H_
7 
8 #include <string>
9 
11 #include "ppapi/cpp/var.h"
12 
15 
16 namespace pp {
17 
19  public:
21  std::string GetEmbedderName() const;
22 
27 
35  Var GenericSyncCall(const Var& operation_name, const Var& operation_data);
36 
37  protected:
42  explicit ExtensionSystemSamsung(const InstanceHandle& instance);
43 
46 
47  private:
48  InstanceHandle instance_;
49 };
50 
51 } // namespace pp
52 
53 #endif // PPAPI_CPP_SAMSUNG_EXTENSION_SYSTEM_SAMSUNG_H_
~ExtensionSystemSamsung()
Destructor.
std::string GetEmbedderName() const
GetEmbedderName() returns name of the extension system provider.
ExtensionSystemSamsung(const InstanceHandle &instance)
Definition: instance_handle.h:44
Definition: extension_system_samsung.h:18
Var GenericSyncCall(const Var &operation_name, const Var &operation_data)
A generic type used for passing data types between the module and the page.
Definition: var.h:23