| Index: ui/gl/gl_state_restorer.cc
|
| diff --git a/ui/gfx/android/gfx_jni_registrar.cc b/ui/gl/gl_state_restorer.cc
|
| similarity index 56%
|
| copy from ui/gfx/android/gfx_jni_registrar.cc
|
| copy to ui/gl/gl_state_restorer.cc
|
| index d4406c8fc6e4cead0b36c38046eca468f551d601..8bf6f81ec68ff6986b7f6a98bdef15b142363079 100644
|
| --- a/ui/gfx/android/gfx_jni_registrar.cc
|
| +++ b/ui/gl/gl_state_restorer.cc
|
| @@ -2,15 +2,15 @@
|
| // Use of this source code is governed by a BSD-style license that can be
|
| // found in the LICENSE file.
|
|
|
| -#include "ui/gfx/android/gfx_jni_registrar.h"
|
| +#include "ui/gl/gl_state_restorer.h"
|
|
|
| namespace gfx {
|
|
|
| -void RegisterBitmapAndroid(JNIEnv* env);
|
| +GLStateRestorer::GLStateRestorer() {
|
| +}
|
|
|
| -bool RegisterJni(JNIEnv* env) {
|
| - RegisterBitmapAndroid(env);
|
| - return true;
|
| +GLStateRestorer::~GLStateRestorer() {
|
| }
|
|
|
| } // namespace gfx
|
| +
|
|
|