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

Unified Diff: remoting/host/fake_screen_capturer.h

Issue 393703002: Rename *Fake to Fake* (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix tests Created 6 years, 5 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « remoting/host/fake_host_status_monitor.h ('k') | remoting/host/fake_screen_capturer.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/host/fake_screen_capturer.h
diff --git a/remoting/host/screen_capturer_fake.h b/remoting/host/fake_screen_capturer.h
similarity index 74%
rename from remoting/host/screen_capturer_fake.h
rename to remoting/host/fake_screen_capturer.h
index fe1660b1eb486f589dcd0f939710f69acb29ec33..8ea84573eb8c6dc854fda1bd86a2bf7dd4b764a6 100644
--- a/remoting/host/screen_capturer_fake.h
+++ b/remoting/host/fake_screen_capturer.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 REMOTING_HOST_SCREEN_CAPTURER_FAKE_H_
-#define REMOTING_HOST_SCREEN_CAPTURER_FAKE_H_
+#ifndef REMOTING_HOST_FAKE_SCREEN_CAPTURER_H_
+#define REMOTING_HOST_FAKE_SCREEN_CAPTURER_H_
#include "base/memory/scoped_ptr.h"
#include "media/base/media_export.h"
@@ -13,17 +13,17 @@
namespace remoting {
-// A ScreenCapturerFake generates artificial image for testing purpose.
+// A FakeScreenCapturer generates artificial image for testing purpose.
//
-// ScreenCapturerFake is double-buffered as required by ScreenCapturer.
-class ScreenCapturerFake : public webrtc::ScreenCapturer {
+// FakeScreenCapturer is double-buffered as required by ScreenCapturer.
+class FakeScreenCapturer : public webrtc::ScreenCapturer {
public:
- // ScreenCapturerFake generates a picture of size kWidth x kHeight.
+ // FakeScreenCapturer generates a picture of size kWidth x kHeight.
static const int kWidth = 800;
static const int kHeight = 600;
- ScreenCapturerFake();
- virtual ~ScreenCapturerFake();
+ FakeScreenCapturer();
+ virtual ~FakeScreenCapturer();
// webrtc::DesktopCapturer interface.
virtual void Start(Callback* callback) OVERRIDE;
@@ -54,9 +54,9 @@ class ScreenCapturerFake : public webrtc::ScreenCapturer {
webrtc::ScreenCaptureFrameQueue queue_;
- DISALLOW_COPY_AND_ASSIGN(ScreenCapturerFake);
+ DISALLOW_COPY_AND_ASSIGN(FakeScreenCapturer);
};
} // namespace remoting
-#endif // REMOTING_HOST_SCREEN_CAPTURER_FAKE_H_
+#endif // REMOTING_HOST_FAKE_SCREEN_CAPTURER_H_
« no previous file with comments | « remoting/host/fake_host_status_monitor.h ('k') | remoting/host/fake_screen_capturer.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698