HomeSort by relevance Sort by last modified time
    Searched defs:desktop (Results 1 - 21 of 21) sorted by null

  /external/chromium_org/remoting/host/win/
window_station_and_desktop.h 14 // Scoper for a pair of window station and desktop handles. Both handles are
21 HDESK desktop() const { return desktop_; } function in class:remoting::WindowStationAndDesktop
24 // Sets a new desktop handle closing the owned desktop handle if needed.
25 void SetDesktop(HDESK desktop);
launch_process_with_token.cc 316 base::string16 desktop; local
318 desktop = desktop_name;
323 (application_name.size() + command_line.size() + desktop.size() + 3);
354 std::copy(desktop.begin(),
355 desktop.end(),
  /external/chromium_org/chrome/browser/tab_contents/
navigation_metrics_recorder.cc 43 chrome::HostDesktopType desktop = local
46 chrome::GetWin8Environment(desktop),
  /external/chromium_org/chrome/browser/ui/app_list/
app_list_controller_browsertest.cc 30 const chrome::HostDesktopType desktop = chrome::GetActiveDesktop(); local
35 EXPECT_EQ(1U, chrome::GetBrowserCount(browser()->profile(), desktop));
37 browser()->profile()->GetOffTheRecordProfile(), desktop));
40 EXPECT_EQ(2U, chrome::GetBrowserCount(browser()->profile(), desktop));
44 browser()->profile()->GetOffTheRecordProfile(), desktop));
app_list_view_delegate.cc 266 // Don't populate the app list users if we are on the ash desktop.
267 chrome::HostDesktopType desktop = chrome::GetHostDesktopTypeForNativeWindow(
269 if (desktop == chrome::HOST_DESKTOP_TYPE_ASH)
491 chrome::HostDesktopType desktop = chrome::GetHostDesktopTypeForNativeWindow( local
493 chrome::ScopedTabbedBrowserDisplayer displayer(profile_, desktop);
503 chrome::HostDesktopType desktop = chrome::GetHostDesktopTypeForNativeWindow( local
505 Browser* browser = chrome::FindTabbedBrowser(profile_, false, desktop);
  /external/chromium_org/chrome/browser/ui/libgtk2ui/
select_file_dialog_impl.cc 43 // Check to see if KDE is the desktop environment.
45 base::nix::DesktopEnvironment desktop = local
47 if (desktop == base::nix::DESKTOP_ENVIRONMENT_KDE3 ||
48 desktop == base::nix::DESKTOP_ENVIRONMENT_KDE4) {
63 base::nix::DesktopEnvironment desktop = local
66 listener, policy, desktop);
  /external/chromium_org/chrome/common/extensions/manifest_handlers/
automation.h 48 // true if the extension has requested 'desktop' permission.
49 const bool desktop; member in struct:extensions::AutomationInfo
61 AutomationInfo(bool desktop, URLPatternSet matches, bool interact);
automation.cc 27 "Cannot specify interactive=false if desktop=true is specified; "
30 "Cannot specify matches for Automation if desktop=true is specified; "
86 if (automation_info_->desktop) {
127 bool desktop = automation_info_->desktop && !other->automation_info_->desktop; local
134 make_scoped_ptr(new const AutomationInfo(desktop, matches, interact)));
142 bool desktop = automation_info_->desktop || other->automation_info_->desktop; local
157 bool desktop = automation_info_->desktop && other->automation_info_->desktop; local
233 bool desktop = false; local
    [all...]
  /external/chromium_org/third_party/webrtc/modules/desktop_capture/win/
desktop.cc 11 #include "webrtc/modules/desktop_capture/win/desktop.h"
19 Desktop::Desktop(HDESK desktop, bool own) : desktop_(desktop), own_(own) {
22 Desktop::~Desktop() {
25 LOG(LS_ERROR) << "Failed to close the owned desktop handle: "
31 bool Desktop::GetName(std::wstring* desktop_name_out) const {
44 LOG(LS_ERROR) << "Failed to query the desktop name: " << GetLastError()
79 HDESK desktop = OpenDesktop(desktop_name, 0, FALSE, desired_access); local
90 HDESK desktop = OpenInputDesktop( local
99 HDESK desktop = ::GetThreadDesktop(GetCurrentThreadId()); local
    [all...]
  /external/chromium_org/chrome/browser/
platform_util_win.cc 74 base::win::ScopedComPtr<IShellFolder> desktop; local
75 HRESULT hr = SHGetDesktopFolder(desktop.Receive());
80 hr = desktop->ParseDisplayName(NULL, NULL,
87 hr = desktop->ParseDisplayName(NULL, NULL,
  /external/chromium_org/third_party/libjingle/source/talk/media/base/
screencastid.h 20 // Used for identifying a window or desktop to be screencast.
23 enum Type { INVALID, WINDOW, DESKTOP };
31 : type_(DESKTOP), desktop_(id) {
36 const rtc::DesktopId& desktop() const { return desktop_; } function in class:cricket::ScreencastId
52 bool IsDesktop() const { return type_ == DESKTOP; }
62 return desktop_.Equals(other.desktop());
  /external/chromium_org/remoting/host/
sas_injector_win.cc 17 #include "third_party/webrtc/modules/desktop_capture/win/desktop.h"
123 // the Winlogon desktop and injecting Ctrl+Alt+Del as a hot key.
190 scoped_ptr<webrtc::Desktop> winlogon_desktop(
191 webrtc::Desktop::GetDesktop(kWinlogonDesktopName));
193 PLOG(ERROR) << "Failed to open '" << kWinlogonDesktopName << "' desktop";
197 webrtc::ScopedThreadDesktop desktop; local
198 if (!desktop.SetThreadDesktop(winlogon_desktop.release())) {
200 << "' desktop";
  /external/chromium_org/chrome/test/chromedriver/
session_commands.cc 228 "apps can only be launched on desktop platforms");
460 ChromeDesktopImpl* desktop = session->chrome->GetAsDesktop(); local
461 if (!desktop) {
464 "command only supported for desktop Chrome without debuggerAddress");
468 Status status = desktop->GetAutomationExtension(&extension);
493 ChromeDesktopImpl* desktop = session->chrome->GetAsDesktop();
494 if (!desktop) {
497 "command only supported for desktop Chrome without debuggerAddress");
501 Status status = desktop->GetAutomationExtension(&extension);
512 ChromeDesktopImpl* desktop = session->chrome->GetAsDesktop() local
566 ChromeDesktopImpl* desktop = session->chrome->GetAsDesktop(); local
    [all...]
  /external/chromium_org/sandbox/win/tests/validation_tests/
commands.cc 205 // Returns true if the current's thread desktop is the interactive desktop.
244 HDESK desktop = ::GetThreadDesktop(::GetCurrentThreadId()); local
245 if (NULL == desktop) {
248 if (::SwitchDesktop(desktop)) {
260 HDESK desktop = ::GetThreadDesktop(::GetCurrentThreadId()); local
261 if (desktop) {
263 if (::DuplicateHandle(::GetCurrentProcess(), desktop,
279 desktop = ::OpenDesktop(desktop_name, 0, FALSE, WRITE_DAC);
280 if (desktop || ::GetLastError() != ERROR_ACCESS_DENIED)
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/plat-mac/lib-scriptpackages/Finder/
Finder_Basics.py 75 """desktop - the desktop """
78 desktop = _Prop_desktop() variable
151 'desktop' : _Prop_desktop,
  /external/chromium_org/chrome/test/base/
ui_test_utils.cc 540 base::FilePath desktop; local
542 return PathService::Get(base::DIR_USER_DESKTOP, &desktop) &&
543 SaveScreenSnapshotToDirectory(desktop, screenshot_path);
  /external/chromium_org/sandbox/win/src/
broker_services.cc 383 base::string16 desktop = policy_base->GetAlternateDesktop(); local
384 if (!desktop.empty()) {
386 const_cast<wchar_t*>(desktop.c_str());
  /external/chromium_org/chrome/browser/android/bookmarks/
bookmarks_bridge.cc 305 const BookmarkNode* desktop = bookmark_model_->bookmark_bar_node(); local
327 bookmarkList.push_back(desktop);
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.swt.gtk.linux.x86_3.6.1.v3657a.jar 
  /prebuilts/tools/common/google-api-java-client/1.8.0-rc/
google-api-java-client-min-repackaged.jar 
  /prebuilts/tools/common/m2/repository/com/cenqua/clover/clover/3.1.12/
clover-3.1.12.jar 

Completed in 956 milliseconds