diff options
Diffstat (limited to 'ui/gl/android_native_window.h')
-rw-r--r-- | ui/gl/android_native_window.h | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/ui/gl/android_native_window.h b/ui/gl/android_native_window.h new file mode 100644 index 0000000..bde5904 --- /dev/null +++ b/ui/gl/android_native_window.h @@ -0,0 +1,32 @@ +// Copyright (c) 2012 The Chromium Authors. All rights reserved. +// Use of this source code is governed by a BSD-style license that can be +// found in the LICENSE file. + +#ifndef UI_GL_ANDROID_NATIVE_WINDOW_H_ +#define UI_GL_ANDROID_NATIVE_WINDOW_H_ +#pragma once + +#include "base/basictypes.h" +#include "base/compiler_specific.h" + +struct ANativeWindow; + +namespace gfx { + +// This class deals with the Android native window ref count. +class AndroidNativeWindow { + public: + explicit AndroidNativeWindow(ANativeWindow* window); + ~AndroidNativeWindow(); + + ANativeWindow* GetNativeHandle() const; + + private: + ANativeWindow* window_; + + DISALLOW_COPY_AND_ASSIGN(AndroidNativeWindow); +}; + +} // namespace gfx + +#endif // UI_GL_ANDROID_NATIVE_WINDOW_H_ |