webrtc_m130/webrtc/modules/desktop_capture/win/scoped_thread_desktop.cc
nisse 368f5cf27e Replace use of system_wrappers/include/logging.h by base/logging.h.
BUG=webrtc:5118

Review-Url: https://codereview.webrtc.org/2781343002
Cr-Commit-Position: refs/heads/master@{#17539}
2017-04-05 12:00:33 +00:00

56 lines
1.3 KiB
C++

/*
* Copyright (c) 2013 The WebRTC project authors. All Rights Reserved.
*
* Use of this source code is governed by a BSD-style license
* that can be found in the LICENSE file in the root of the source
* tree. An additional intellectual property rights grant can be found
* in the file PATENTS. All contributing project authors may
* be found in the AUTHORS file in the root of the source tree.
*/
#include "webrtc/modules/desktop_capture/win/scoped_thread_desktop.h"
#include "webrtc/modules/desktop_capture/win/desktop.h"
namespace webrtc {
ScopedThreadDesktop::ScopedThreadDesktop()
: initial_(Desktop::GetThreadDesktop()) {
}
ScopedThreadDesktop::~ScopedThreadDesktop() {
Revert();
}
bool ScopedThreadDesktop::IsSame(const Desktop& desktop) {
if (assigned_.get() != NULL) {
return assigned_->IsSame(desktop);
} else {
return initial_->IsSame(desktop);
}
}
void ScopedThreadDesktop::Revert() {
if (assigned_.get() != NULL) {
initial_->SetThreadDesktop();
assigned_.reset();
}
}
bool ScopedThreadDesktop::SetThreadDesktop(Desktop* desktop) {
Revert();
std::unique_ptr<Desktop> scoped_desktop(desktop);
if (initial_->IsSame(*desktop))
return true;
if (!desktop->SetThreadDesktop())
return false;
assigned_.reset(scoped_desktop.release());
return true;
}
} // namespace webrtc