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

Side by Side Diff: chrome/browser/ui/webui/chromeos/login/oobe_display_chooser.h

Issue 2865003003: Put OOBE UI on touch display if no keyboard detected (Closed)
Patch Set: Add TODO and link to bug Created 3 years, 7 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 2017 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 CHROME_BROWSER_UI_WEBUI_CHROMEOS_LOGIN_OOBE_DISPLAY_CHOOSER_H_
6 #define CHROME_BROWSER_UI_WEBUI_CHROMEOS_LOGIN_OOBE_DISPLAY_CHOOSER_H_
7
8 #include "base/macros.h"
9
10 namespace chromeos {
11
12 // Tries to put the OOBE UI on a connected touch display (if available).
13 class OobeDisplayChooser {
14 public:
15 OobeDisplayChooser();
16 ~OobeDisplayChooser();
17
18 void TryToPlaceUiOnTouchDisplay();
19
20 private:
21 void MoveToTouchDisplay();
22
23 DISALLOW_COPY_AND_ASSIGN(OobeDisplayChooser);
24 };
25
26 } // namespace chromeos
27
28 #endif // CHROME_BROWSER_UI_WEBUI_CHROMEOS_LOGIN_OOBE_DISPLAY_CHOOSER_H_
OLDNEW
« no previous file with comments | « chrome/browser/ui/BUILD.gn ('k') | chrome/browser/ui/webui/chromeos/login/oobe_display_chooser.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698