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

Side by Side Diff: base/sys_utils.h

Issue 258663002: Expose a low-end device mode override flags for non-android OSs as well (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix Android unittest build. Created 6 years, 6 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 unified diff | Download patch
OLDNEW
(Empty)
1 // Copyright 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #ifndef BASE_SYS_UTILS_H_
6 #define BASE_SYS_UTILS_H_
7
8 #include <stddef.h>
9
10 #include "base/base_export.h"
11
12 namespace base {
13
14 class BASE_EXPORT SysUtils {
15 public:
16 // Returns true iff this is a low-end device.
17 static bool IsLowEndDevice();
brettw 2014/06/11 21:02:40 When I suggested moving this to sys_info, I was ex
18
19 private:
20 SysUtils() {};
21 };
22
23 } // namespace base
24
25 #endif // BASE_SYS_UTILS_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698