HomeSort by relevance Sort by last modified time
    Searched defs:OzonePlatform (Results 1 - 2 of 2) sorted by null

  /external/chromium_org/ui/ozone/public/
ozone_platform.h 31 // The OzonePlatform subclass can own any state needed by the
39 class OZONE_EXPORT OzonePlatform {
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);
ozone_platform.cc 23 OzonePlatform::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 is not initialized"
    [all...]

Completed in 40 milliseconds