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

Side by Side Diff: base/win/win_util.h

Issue 140553005: Add Windows utillity function to verify if a computer is part of a domain. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Addressed the nits. Created 6 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | base/win/win_util.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 // ============================================================================= 5 // =============================================================================
6 // PLEASE READ 6 // PLEASE READ
7 // 7 //
8 // In general, you should not be adding stuff to this file. 8 // In general, you should not be adding stuff to this file.
9 // 9 //
10 // - If your thing is only used in one place, just put it in a reasonable 10 // - If your thing is only used in one place, just put it in a reasonable
(...skipping 112 matching lines...) Expand 10 before | Expand all | Expand 10 after
123 BASE_EXPORT bool DisplayVirtualKeyboard(); 123 BASE_EXPORT bool DisplayVirtualKeyboard();
124 124
125 // Dismisses the on screen keyboard if it is being displayed on Windows 8 and. 125 // Dismisses the on screen keyboard if it is being displayed on Windows 8 and.
126 // above. Returns true on success. 126 // above. Returns true on success.
127 BASE_EXPORT bool DismissVirtualKeyboard(); 127 BASE_EXPORT bool DismissVirtualKeyboard();
128 128
129 // Returns monitor info after correcting rcWorkArea based on metro version. 129 // Returns monitor info after correcting rcWorkArea based on metro version.
130 // see bug #247430 for more details. 130 // see bug #247430 for more details.
131 BASE_EXPORT BOOL GetMonitorInfoWrapper(HMONITOR monitor, MONITORINFO* mi); 131 BASE_EXPORT BOOL GetMonitorInfoWrapper(HMONITOR monitor, MONITORINFO* mi);
132 132
133 // Returns true if the machine is enrolled to a domain.
134 BASE_EXPORT bool IsEnrolledToDomain();
135
133 } // namespace win 136 } // namespace win
134 } // namespace base 137 } // namespace base
135 138
136 #endif // BASE_WIN_WIN_UTIL_H_ 139 #endif // BASE_WIN_WIN_UTIL_H_
OLDNEW
« no previous file with comments | « no previous file | base/win/win_util.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698