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

Unified Diff: cc/proto/gpu_conversions_unittest.cc

Issue 2493853002: cc/blimp: Proto Cleanup. (Closed)
Patch Set: Rebase Created 4 years, 1 month 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/proto/gpu_conversions.cc ('k') | cc/proto/layer.proto » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: cc/proto/gpu_conversions_unittest.cc
diff --git a/cc/proto/gpu_conversions_unittest.cc b/cc/proto/gpu_conversions_unittest.cc
deleted file mode 100644
index 7ed770b326f6e4dd7cdea8411313f019e858c796..0000000000000000000000000000000000000000
--- a/cc/proto/gpu_conversions_unittest.cc
+++ /dev/null
@@ -1,29 +0,0 @@
-// Copyright 2015 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/proto/gpu_conversions.h"
-
-#include <stddef.h>
-
-#include "cc/proto/memory_allocation.pb.h"
-#include "gpu/command_buffer/common/gpu_memory_allocation.h"
-#include "testing/gtest/include/gtest/gtest.h"
-
-namespace cc {
-namespace {
-
-TEST(GpuProtoConversionTest,
- SerializeDeserializeMemoryAllocationPriorityCutoff) {
- for (size_t i = 0; i < gpu::MemoryAllocation::PriorityCutoff::CUTOFF_LAST;
- ++i) {
- gpu::MemoryAllocation::PriorityCutoff priority_cutoff =
- static_cast<gpu::MemoryAllocation::PriorityCutoff>(i);
- EXPECT_EQ(priority_cutoff,
- MemoryAllocationPriorityCutoffFromProto(
- MemoryAllocationPriorityCutoffToProto(priority_cutoff)));
- }
-}
-
-} // namespace
-} // namespace cc
« no previous file with comments | « cc/proto/gpu_conversions.cc ('k') | cc/proto/layer.proto » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698