Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(623)

Side by Side Diff: content/renderer/pepper/pepper_plugin_instance_impl.h

Issue 24192004: Changes to the EME Pepper API (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 7 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef CONTENT_RENDERER_PEPPER_PEPPER_PLUGIN_INSTANCE_IMPL_H_ 5 #ifndef CONTENT_RENDERER_PEPPER_PEPPER_PLUGIN_INSTANCE_IMPL_H_
6 #define CONTENT_RENDERER_PEPPER_PEPPER_PLUGIN_INSTANCE_IMPL_H_ 6 #define CONTENT_RENDERER_PEPPER_PEPPER_PLUGIN_INSTANCE_IMPL_H_
7 7
8 #include <list> 8 #include <list>
9 #include <set> 9 #include <set>
10 #include <string> 10 #include <string>
(...skipping 424 matching lines...) Expand 10 before | Expand all | Expand 10 after
435 virtual PP_Var GetDocumentURL(PP_Instance instance, 435 virtual PP_Var GetDocumentURL(PP_Instance instance,
436 PP_URLComponents_Dev* components) OVERRIDE; 436 PP_URLComponents_Dev* components) OVERRIDE;
437 virtual PP_Var GetPluginInstanceURL( 437 virtual PP_Var GetPluginInstanceURL(
438 PP_Instance instance, 438 PP_Instance instance,
439 PP_URLComponents_Dev* components) OVERRIDE; 439 PP_URLComponents_Dev* components) OVERRIDE;
440 virtual PP_Var GetPluginReferrerURL( 440 virtual PP_Var GetPluginReferrerURL(
441 PP_Instance instance, 441 PP_Instance instance,
442 PP_URLComponents_Dev* components) OVERRIDE; 442 PP_URLComponents_Dev* components) OVERRIDE;
443 443
444 // PPB_ContentDecryptor_Private implementation. 444 // PPB_ContentDecryptor_Private implementation.
445 virtual void NeedKey(PP_Instance instance,
446 PP_Var key_system,
447 PP_Var session_id,
448 PP_Var init_data) OVERRIDE;
449 virtual void KeyAdded(PP_Instance instance, 445 virtual void KeyAdded(PP_Instance instance,
450 PP_Var key_system, 446 PP_Var key_system,
451 PP_Var session_id) OVERRIDE; 447 PP_Var session_id) OVERRIDE;
452 virtual void KeyMessage(PP_Instance instance, 448 virtual void KeyMessage(PP_Instance instance,
453 PP_Var key_system, 449 PP_Var key_system,
454 PP_Var session_id, 450 PP_Var session_id,
455 PP_Var message, 451 PP_Var message,
456 PP_Var default_url) OVERRIDE; 452 PP_Var default_url) OVERRIDE;
457 virtual void KeyError(PP_Instance instance, 453 virtual void KeyError(PP_Instance instance,
458 PP_Var key_system, 454 PP_Var key_system,
(...skipping 404 matching lines...) Expand 10 before | Expand all | Expand 10 after
863 859
864 scoped_ptr<MouseLockDispatcher::LockTarget> lock_target_; 860 scoped_ptr<MouseLockDispatcher::LockTarget> lock_target_;
865 861
866 friend class PpapiPluginInstanceTest; 862 friend class PpapiPluginInstanceTest;
867 DISALLOW_COPY_AND_ASSIGN(PepperPluginInstanceImpl); 863 DISALLOW_COPY_AND_ASSIGN(PepperPluginInstanceImpl);
868 }; 864 };
869 865
870 } // namespace content 866 } // namespace content
871 867
872 #endif // CONTENT_RENDERER_PEPPER_PEPPER_PLUGIN_INSTANCE_IMPL_H_ 868 #endif // CONTENT_RENDERER_PEPPER_PEPPER_PLUGIN_INSTANCE_IMPL_H_
OLDNEW
« no previous file with comments | « content/renderer/pepper/content_decryptor_delegate.cc ('k') | content/renderer/pepper/pepper_plugin_instance_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698