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

Unified Diff: cc/resources/texture_mailbox.cc

Issue 1535833002: Delete CC. (Closed) Base URL: git@github.com:domokit/mojo.git@moz-5
Patch Set: rebase Created 4 years, 11 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 | « cc/resources/texture_mailbox.h ('k') | cc/resources/texture_mailbox_deleter.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: cc/resources/texture_mailbox.cc
diff --git a/cc/resources/texture_mailbox.cc b/cc/resources/texture_mailbox.cc
deleted file mode 100644
index 9bf242e1d7c897e44b4c0f904d0ec54b29cf87cc..0000000000000000000000000000000000000000
--- a/cc/resources/texture_mailbox.cc
+++ /dev/null
@@ -1,63 +0,0 @@
-// 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 "cc/resources/texture_mailbox.h"
-
-#include "base/logging.h"
-#include "cc/resources/shared_bitmap.h"
-
-namespace cc {
-
-TextureMailbox::TextureMailbox() : shared_bitmap_(NULL) {
-}
-
-TextureMailbox::TextureMailbox(const gpu::MailboxHolder& mailbox_holder)
- : mailbox_holder_(mailbox_holder),
- shared_bitmap_(NULL),
- allow_overlay_(false),
- nearest_neighbor_(false) {
-}
-
-TextureMailbox::TextureMailbox(const gpu::Mailbox& mailbox,
- uint32 target,
- uint32 sync_point)
- : mailbox_holder_(mailbox, target, sync_point),
- shared_bitmap_(NULL),
- allow_overlay_(false),
- nearest_neighbor_(false) {
-}
-
-TextureMailbox::TextureMailbox(SharedBitmap* shared_bitmap,
- const gfx::Size& size)
- : shared_bitmap_(shared_bitmap),
- shared_memory_size_(size),
- allow_overlay_(false),
- nearest_neighbor_(false) {
- // If an embedder of cc gives an invalid TextureMailbox, we should crash
- // here to identify the offender.
- CHECK(SharedBitmap::VerifySizeInBytes(shared_memory_size_));
-}
-
-TextureMailbox::~TextureMailbox() {}
-
-bool TextureMailbox::Equals(const TextureMailbox& other) const {
- if (other.IsTexture()) {
- return IsTexture() && !memcmp(mailbox_holder_.mailbox.name,
- other.mailbox_holder_.mailbox.name,
- sizeof(mailbox_holder_.mailbox.name));
- } else if (other.IsSharedMemory()) {
- return IsSharedMemory() && (shared_bitmap_ == other.shared_bitmap_);
- }
-
- DCHECK(!other.IsValid());
- return !IsValid();
-}
-
-size_t TextureMailbox::SharedMemorySizeInBytes() const {
- // UncheckedSizeInBytes is okay because we VerifySizeInBytes in the
- // constructor and the field is immutable.
- return SharedBitmap::UncheckedSizeInBytes(shared_memory_size_);
-}
-
-} // namespace cc
« no previous file with comments | « cc/resources/texture_mailbox.h ('k') | cc/resources/texture_mailbox_deleter.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698