summaryrefslogtreecommitdiff
path: root/chromium/ui/gfx/android/device_display_info.cc
blob: 16fd2acb1d8a280f67c787dce12ddab15645c650 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
// 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.

#include "ui/gfx/android/device_display_info.h"

#include "base/android/jni_android.h"
#include "base/android/jni_string.h"
#include "base/logging.h"
#include "jni/DeviceDisplayInfo_jni.h"

using base::android::AttachCurrentThread;
using base::android::ScopedJavaLocalRef;

namespace gfx {

DeviceDisplayInfo::DeviceDisplayInfo() {
  JNIEnv* env = AttachCurrentThread();
  j_device_info_.Reset(Java_DeviceDisplayInfo_create(env,
      base::android::GetApplicationContext()));
}

DeviceDisplayInfo::~DeviceDisplayInfo() {
}

int DeviceDisplayInfo::GetDisplayHeight() {
  JNIEnv* env = AttachCurrentThread();
  jint result =
      Java_DeviceDisplayInfo_getDisplayHeight(env, j_device_info_.obj());
  return static_cast<int>(result);
}

int DeviceDisplayInfo::GetDisplayWidth() {
  JNIEnv* env = AttachCurrentThread();
  jint result =
      Java_DeviceDisplayInfo_getDisplayWidth(env, j_device_info_.obj());
  return static_cast<int>(result);
}

int DeviceDisplayInfo::GetBitsPerPixel() {
  JNIEnv* env = AttachCurrentThread();
  jint result =
      Java_DeviceDisplayInfo_getBitsPerPixel(env, j_device_info_.obj());
  return static_cast<int>(result);
}

int DeviceDisplayInfo::GetBitsPerComponent() {
  JNIEnv* env = AttachCurrentThread();
  jint result =
      Java_DeviceDisplayInfo_getBitsPerComponent(env, j_device_info_.obj());
  return static_cast<int>(result);
}

double DeviceDisplayInfo::GetDIPScale() {
  JNIEnv* env = AttachCurrentThread();
  jdouble result =
      Java_DeviceDisplayInfo_getDIPScale(env, j_device_info_.obj());
  return static_cast<double>(result);
}

// static
bool DeviceDisplayInfo::RegisterDeviceDisplayInfo(JNIEnv* env) {
  return RegisterNativesImpl(env);
}

}  // namespace gfx