Searched defs:OzonePlatform (Results 1 - 2 of 2) sorted by relevance

/external/chromium_org/ui/ozone/public/
H A Dozone_platform.h31 // The OzonePlatform subclass can own any state needed by the
39 class OZONE_EXPORT OzonePlatform { class in namespace:ui
41 OzonePlatform();
42 virtual ~OzonePlatform();
51 static OzonePlatform* GetInstance();
55 // inject these objects themselves. Ownership is retained by OzonePlatform.
74 static OzonePlatform* instance_;
76 DISALLOW_COPY_AND_ASSIGN(OzonePlatform);
H A Dozone_platform.cc23 OzonePlatform::OzonePlatform() { function in class:ui::OzonePlatform
24 DCHECK(!instance_) << "There should only be a single OzonePlatform.";
30 OzonePlatform::~OzonePlatform() {
36 void OzonePlatform::InitializeForUI() {
48 void OzonePlatform::InitializeForGPU() {
57 OzonePlatform* OzonePlatform::GetInstance() {
58 DCHECK(instance_) << "OzonePlatform i
[all...]

Completed in 124 milliseconds