Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1183)

Unified Diff: content/common/android/device_info.h

Issue 11886074: Use correct favicon scale factor on Android. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Final rebase after DIP scale fix. Created 7 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « content/common/android/common_jni_registrar.cc ('k') | content/common/android/device_info.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/common/android/device_info.h
diff --git a/content/common/android/device_info.h b/content/common/android/device_info.h
deleted file mode 100644
index 017961f21bc009e2424ec248035ae77a136d7a0a..0000000000000000000000000000000000000000
--- a/content/common/android/device_info.h
+++ /dev/null
@@ -1,41 +0,0 @@
-// 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 CONTENT_COMMON_ANDROID_DEVICE_INFO_H_
-#define CONTENT_COMMON_ANDROID_DEVICE_INFO_H_
-
-#include <jni.h>
-#include <string>
-
-#include "base/android/scoped_java_ref.h"
-#include "base/basictypes.h"
-
-namespace content {
-
-// Facilitates access to device information typically only
-// available using the Android SDK, including Display properties.
-class DeviceInfo {
- public:
- DeviceInfo();
- ~DeviceInfo();
-
- int GetHeight();
- int GetWidth();
- int GetBitsPerPixel();
- int GetBitsPerComponent();
- double GetDPIScale();
- double GetRefreshRate();
- std::string GetNetworkCountryIso();
-
- private:
- base::android::ScopedJavaGlobalRef<jobject> j_device_info_;
-
- DISALLOW_COPY_AND_ASSIGN(DeviceInfo);
-};
-
-bool RegisterDeviceInfo(JNIEnv* env);
-
-} // namespace content
-
-#endif // CONTENT_COMMON_ANDROID_DEVICE_INFO_H_
« no previous file with comments | « content/common/android/common_jni_registrar.cc ('k') | content/common/android/device_info.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698