Home
last modified time | relevance | path

Searched refs:ChromotingInstance (Results 1 – 7 of 7) sorted by relevance

/external/chromium_org/remoting/client/plugin/
Dchromoting_instance.cc162 base::LazyInstance<base::WeakPtr<ChromotingInstance> >::Leaky
171 const char ChromotingInstance::kApiFeatures[] =
176 const char ChromotingInstance::kRequestedCapabilities[] = "";
177 const char ChromotingInstance::kSupportedCapabilities[] = "desktopShape";
179 bool ChromotingInstance::ParseAuthMethods(const std::string& auth_methods_str, in ParseAuthMethods()
198 ChromotingInstance::ChromotingInstance(PP_Instance pp_instance) in ChromotingInstance() function in remoting::ChromotingInstance
233 ChromotingInstance::~ChromotingInstance() { in ~ChromotingInstance()
255 bool ChromotingInstance::Init(uint32_t argc, in Init()
289 void ChromotingInstance::HandleMessage(const pp::Var& message) { in HandleMessage()
346 void ChromotingInstance::DidChangeFocus(bool has_focus) { in DidChangeFocus()
[all …]
Dpepper_token_fetcher.h14 class ChromotingInstance; variable
19 PepperTokenFetcher(base::WeakPtr<ChromotingInstance> plugin,
34 base::WeakPtr<ChromotingInstance> plugin_;
Dpepper_entrypoints.cc30 virtual ChromotingInstance* CreateInstance(PP_Instance instance) OVERRIDE { in CreateInstance()
31 return new ChromotingInstance(instance); in CreateInstance()
46 ChromotingInstance::RegisterLogMessageHandler(); in PPP_InitializeModule()
Dchromoting_instance.h68 class ChromotingInstance :
104 explicit ChromotingInstance(PP_Instance instance);
105 virtual ~ChromotingInstance();
267 base::WeakPtrFactory<ChromotingInstance> weak_factory_;
269 DISALLOW_COPY_AND_ASSIGN(ChromotingInstance);
Dpepper_view.h32 class ChromotingInstance; variable
40 PepperView(ChromotingInstance* instance, ClientContext* context);
97 ChromotingInstance* const instance_;
Dpepper_token_fetcher.cc11 PepperTokenFetcher::PepperTokenFetcher(base::WeakPtr<ChromotingInstance> plugin, in PepperTokenFetcher()
Dpepper_view.cc63 PepperView::PepperView(ChromotingInstance* instance, in PepperView()