| Index: chrome/browser/android/chrome_context_util.h
|
| diff --git a/chrome/browser/android/chrome_context_util.h b/chrome/browser/android/chrome_context_util.h
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..eac5d005cb146849b438b2e8abf34311a501c714
|
| --- /dev/null
|
| +++ b/chrome/browser/android/chrome_context_util.h
|
| @@ -0,0 +1,23 @@
|
| +// Copyright 2017 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 CHROME_BROWSER_ANDROID_CHROME_CONTEXT_UTIL_H_
|
| +#define CHROME_BROWSER_ANDROID_CHROME_CONTEXT_UTIL_H_
|
| +
|
| +namespace chrome {
|
| +namespace android {
|
| +
|
| +class ChromeContextUtil {
|
| + public:
|
| + // Smallest possible screen size in density-independent pixels.
|
| + static int GetSmallestDIPWidth();
|
| +
|
| + private:
|
| + ChromeContextUtil();
|
| +};
|
| +
|
| +} // namespace android
|
| +} // namespace chrome
|
| +
|
| +#endif // CHROME_BROWSER_ANDROID_CHROME_CONTEXT_UTIL_H_
|
|
|