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

Unified Diff: content/browser/renderer_host/media/desktop_capture_device_aura.cc

Issue 104653007: Renamed DesktopCaptureDeviceAsh to DesktopCaptureDeviceAura (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years 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 side-by-side diff with in-line comments
Download patch
Index: content/browser/renderer_host/media/desktop_capture_device_aura.cc
diff --git a/content/browser/renderer_host/media/desktop_capture_device_ash.cc b/content/browser/renderer_host/media/desktop_capture_device_aura.cc
similarity index 96%
rename from content/browser/renderer_host/media/desktop_capture_device_ash.cc
rename to content/browser/renderer_host/media/desktop_capture_device_aura.cc
index 496ff0308d65176b67981b3e11a099f9d071c5c1..5419488c88cd0fa4801b2af035e697efe471c9cc 100644
--- a/content/browser/renderer_host/media/desktop_capture_device_ash.cc
+++ b/content/browser/renderer_host/media/desktop_capture_device_aura.cc
@@ -1,8 +1,8 @@
// Copyright 2013 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
-//
-#include "content/browser/renderer_host/media/desktop_capture_device_ash.h"
+
+#include "content/browser/renderer_host/media/desktop_capture_device_aura.h"
#include "base/logging.h"
#include "base/timer/timer.h"
@@ -294,33 +294,33 @@ void DesktopVideoCaptureMachine::OnCompositingEnded(
} // namespace
-DesktopCaptureDeviceAsh::DesktopCaptureDeviceAsh(
+DesktopCaptureDeviceAura::DesktopCaptureDeviceAura(
const DesktopMediaID& source)
: impl_(new VideoCaptureDeviceImpl(scoped_ptr<VideoCaptureMachine>(
new DesktopVideoCaptureMachine(source)))) {}
-DesktopCaptureDeviceAsh::~DesktopCaptureDeviceAsh() {
- DVLOG(2) << "DesktopCaptureDeviceAsh@" << this << " destroying.";
+DesktopCaptureDeviceAura::~DesktopCaptureDeviceAura() {
+ DVLOG(2) << "DesktopCaptureDeviceAura@" << this << " destroying.";
}
// static
-media::VideoCaptureDevice* DesktopCaptureDeviceAsh::Create(
+media::VideoCaptureDevice* DesktopCaptureDeviceAura::Create(
const DesktopMediaID& source) {
// This implementation only supports screen capture.
if (source.type != DesktopMediaID::TYPE_SCREEN)
return NULL;
- return new DesktopCaptureDeviceAsh(source);
+ return new DesktopCaptureDeviceAura(source);
}
-void DesktopCaptureDeviceAsh::AllocateAndStart(
+void DesktopCaptureDeviceAura::AllocateAndStart(
const media::VideoCaptureParams& params,
scoped_ptr<Client> client) {
DVLOG(1) << "Allocating " << params.requested_format.frame_size.ToString();
impl_->AllocateAndStart(params, client.Pass());
}
-void DesktopCaptureDeviceAsh::StopAndDeAllocate() {
+void DesktopCaptureDeviceAura::StopAndDeAllocate() {
impl_->StopAndDeAllocate();
}

Powered by Google App Engine
This is Rietveld 408576698