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

Unified Diff: remoting/host/capturer_linux.h

Issue 6780014: Clean up remoting project (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix a compile glitch on Windows Created 9 years, 9 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
Index: remoting/host/capturer_linux.h
diff --git a/remoting/host/capturer_linux.h b/remoting/host/capturer_linux.h
deleted file mode 100644
index f0ef413fde64b8eaffffae5c0d9f89c08d87d631..0000000000000000000000000000000000000000
--- a/remoting/host/capturer_linux.h
+++ /dev/null
@@ -1,41 +0,0 @@
-// Copyright (c) 2011 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.
-
-#ifndef REMOTING_HOST_CAPTURER_LINUX_H_
-#define REMOTING_HOST_CAPTURER_LINUX_H_
-
-#include "base/basictypes.h"
-#include "base/memory/scoped_ptr.h"
-#include "remoting/host/capturer.h"
-
-namespace remoting {
-
-class CapturerLinuxPimpl;
-
-// A class to perform capturing for Linux.
-class CapturerLinux : public Capturer {
- public:
- CapturerLinux();
- virtual ~CapturerLinux();
-
- // Capturer interface.
- virtual void ScreenConfigurationChanged();
- virtual media::VideoFrame::Format pixel_format() const;
- virtual void ClearInvalidRects();
- virtual void InvalidateRects(const InvalidRects& inval_rects);
- virtual void InvalidateScreen(const gfx::Size& size);
- virtual void InvalidateFullScreen();
- virtual void CaptureInvalidRects(CaptureCompletedCallback* callback);
- virtual const gfx::Size& size_most_recent() const;
-
- private:
- friend class CapturerLinuxPimpl;
-
- scoped_ptr<CapturerLinuxPimpl> pimpl_;
- DISALLOW_COPY_AND_ASSIGN(CapturerLinux);
-};
-
-} // namespace remoting
-
-#endif // REMOTING_HOST_CAPTURER_LINUX_H_

Powered by Google App Engine
This is Rietveld 408576698