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

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

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.h
diff --git a/content/browser/renderer_host/media/desktop_capture_device_ash.h b/content/browser/renderer_host/media/desktop_capture_device_aura.h
similarity index 75%
rename from content/browser/renderer_host/media/desktop_capture_device_ash.h
rename to content/browser/renderer_host/media/desktop_capture_device_aura.h
index 95969a8e6b7b98cf1fd249b78965c5dd05d4e4b2..bd0d7180b9590b38538d4a16c2661122a751da97 100644
--- a/content/browser/renderer_host/media/desktop_capture_device_ash.h
+++ b/content/browser/renderer_host/media/desktop_capture_device_aura.h
@@ -2,8 +2,8 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
-#ifndef CONTENT_BROWSER_RENDERER_HOST_MEDIA_DESKTOP_CAPTURE_DEVICE_ASH_H_
-#define CONTENT_BROWSER_RENDERER_HOST_MEDIA_DESKTOP_CAPTURE_DEVICE_ASH_H_
+#ifndef CONTENT_BROWSER_RENDERER_HOST_MEDIA_DESKTOP_CAPTURE_DEVICE_AURA_H_
+#define CONTENT_BROWSER_RENDERER_HOST_MEDIA_DESKTOP_CAPTURE_DEVICE_AURA_H_
#include <string>
@@ -20,14 +20,14 @@ namespace content {
class VideoCaptureDeviceImpl;
-// An implementation of VideoCaptureDevice that mirrors the desktop on Ash.
-class CONTENT_EXPORT DesktopCaptureDeviceAsh
+// An implementation of VideoCaptureDevice that mirrors an Aura window.
+class CONTENT_EXPORT DesktopCaptureDeviceAura
: public media::VideoCaptureDevice {
public:
- // Creates a VideoCaptureDevice for the Ash desktop.
+ // Creates a VideoCaptureDevice for the Aura desktop.
static media::VideoCaptureDevice* Create(const DesktopMediaID& source);
- virtual ~DesktopCaptureDeviceAsh();
+ virtual ~DesktopCaptureDeviceAura();
// VideoCaptureDevice implementation.
virtual void AllocateAndStart(const media::VideoCaptureParams& params,
@@ -35,14 +35,14 @@ class CONTENT_EXPORT DesktopCaptureDeviceAsh
virtual void StopAndDeAllocate() OVERRIDE;
private:
- DesktopCaptureDeviceAsh(const DesktopMediaID& source);
+ DesktopCaptureDeviceAura(const DesktopMediaID& source);
const scoped_ptr<class VideoCaptureDeviceImpl> impl_;
- DISALLOW_COPY_AND_ASSIGN(DesktopCaptureDeviceAsh);
+ DISALLOW_COPY_AND_ASSIGN(DesktopCaptureDeviceAura);
};
} // namespace content
-#endif // CONTENT_BROWSER_RENDERER_HOST_MEDIA_DESKTOP_CAPTURE_DEVICE_ASH_H_
+#endif // CONTENT_BROWSER_RENDERER_HOST_MEDIA_DESKTOP_CAPTURE_DEVICE_AURA_H_

Powered by Google App Engine
This is Rietveld 408576698