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

Unified Diff: webrtc/modules/desktop_capture/rgba_color.h

Issue 2310953002: Revert of [WebRTC] A real ScreenCapturer test (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Created 4 years, 3 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 | « webrtc/modules/BUILD.gn ('k') | webrtc/modules/desktop_capture/rgba_color.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webrtc/modules/desktop_capture/rgba_color.h
diff --git a/webrtc/modules/desktop_capture/rgba_color.h b/webrtc/modules/desktop_capture/rgba_color.h
deleted file mode 100644
index ff4a2584152d720e6ecd0fa0bfd50dfa819ac9d1..0000000000000000000000000000000000000000
--- a/webrtc/modules/desktop_capture/rgba_color.h
+++ /dev/null
@@ -1,54 +0,0 @@
-/*
- * Copyright (c) 2016 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.
- */
-
-#ifndef WEBRTC_MODULES_DESKTOP_CAPTURE_RGBA_COLOR_H_
-#define WEBRTC_MODULES_DESKTOP_CAPTURE_RGBA_COLOR_H_
-
-#include <stdint.h>
-
-#include "webrtc/modules/desktop_capture/desktop_frame.h"
-
-namespace webrtc {
-
-// A four-byte structure to store a color in BGRA format. This structure also
-// provides functions to be created from uint8_t array, say,
-// DesktopFrame::data(). It always uses BGRA order for internal storage to match
-// DesktopFrame::data().
-//
-// This struct is for testing purpose only, and should not be used in production
-// logic.
-struct RgbaColor final {
- // Creates a color with BGRA channels.
- RgbaColor(uint8_t blue, uint8_t green, uint8_t red, uint8_t alpha);
-
- // Creates a color with BGR channels, and set alpha channel to 255 (opaque).
- RgbaColor(uint8_t blue, uint8_t green, uint8_t red);
-
- // Creates a color from four-byte in BGRA order, i.e. DesktopFrame::data().
- explicit RgbaColor(const uint8_t* bgra);
-
- // Returns true if |this| and |right| is the same color.
- bool operator==(const RgbaColor& right) const;
-
- // Returns true if |this| and |right| are different colors.
- bool operator!=(const RgbaColor& right) const;
-
- uint8_t blue;
- uint8_t green;
- uint8_t red;
- uint8_t alpha;
-};
-static_assert(
- DesktopFrame::kBytesPerPixel == sizeof(RgbaColor),
- "A pixel in DesktopFrame should be safe to be represented by a RgbaColor");
-
-} // namespace webrtc
-
-#endif // WEBRTC_MODULES_DESKTOP_CAPTURE_RGBA_COLOR_H_
« no previous file with comments | « webrtc/modules/BUILD.gn ('k') | webrtc/modules/desktop_capture/rgba_color.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698