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

Unified Diff: remoting/base/shared_buffer_unittest.cc

Issue 11470028: Move screen capturers to remoting/capturer. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 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
« no previous file with comments | « remoting/base/shared_buffer_factory.h ('k') | remoting/base/util.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/base/shared_buffer_unittest.cc
diff --git a/remoting/base/shared_buffer_unittest.cc b/remoting/base/shared_buffer_unittest.cc
deleted file mode 100644
index bb7e57b145477a3de9603e95ac9becee71fd24f8..0000000000000000000000000000000000000000
--- a/remoting/base/shared_buffer_unittest.cc
+++ /dev/null
@@ -1,50 +0,0 @@
-// Copyright (c) 2012 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 "remoting/base/shared_buffer.h"
-#include "testing/gtest/include/gtest/gtest.h"
-
-const uint32 kBufferSize = 4096;
-const int kPattern = 0x12345678;
-
-const int kIdZero = 0;
-const int kIdOne = 1;
-
-namespace remoting {
-
-TEST(SharedBufferTest, Basic) {
- scoped_refptr<SharedBuffer> source(new SharedBuffer(kBufferSize));
-
- // Make sure that the buffer is allocated, the size is recorded correctly and
- // its ID is reset.
- EXPECT_TRUE(source->ptr() != NULL);
- EXPECT_EQ(source->id(), kIdZero);
- EXPECT_EQ(source->size(), kBufferSize);
-
- // See if setting of the ID works.
- source->set_id(kIdOne);
- EXPECT_EQ(source->id(), kIdOne);
-
- scoped_refptr<SharedBuffer> dest(
- new SharedBuffer(kIdZero, source->handle(), kBufferSize));
-
- // Make sure that the buffer is allocated, the size is recorded correctly and
- // its ID is reset.
- EXPECT_TRUE(dest->ptr() != NULL);
- EXPECT_EQ(dest->id(), kIdZero);
- EXPECT_EQ(dest->size(), kBufferSize);
-
- // Verify that the memory contents are the same for the two buffers.
- int* source_ptr = reinterpret_cast<int*>(source->ptr());
- *source_ptr = kPattern;
- int* dest_ptr = reinterpret_cast<int*>(dest->ptr());
- EXPECT_EQ(*source_ptr, *dest_ptr);
-
- // Check that the destination buffer is still mapped even when the source
- // buffer is destroyed.
- source = NULL;
- EXPECT_EQ(0x12345678, *dest_ptr);
-}
-
-} // namespace remoting
« no previous file with comments | « remoting/base/shared_buffer_factory.h ('k') | remoting/base/util.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698