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

Unified Diff: cc/proto/base_conversions_unittest.cc

Issue 2646623002: cc: Remove all blimp code from cc. (Closed)
Patch Set: test build Created 3 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/proto/base_conversions.cc ('k') | cc/proto/cc_conversions.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: cc/proto/base_conversions_unittest.cc
diff --git a/cc/proto/base_conversions_unittest.cc b/cc/proto/base_conversions_unittest.cc
deleted file mode 100644
index 57dd80763a85ec4b8da5302b7534a36c68a19585..0000000000000000000000000000000000000000
--- a/cc/proto/base_conversions_unittest.cc
+++ /dev/null
@@ -1,30 +0,0 @@
-// Copyright 2016 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/base_conversions.h"
-
-#include "testing/gtest/include/gtest/gtest.h"
-
-namespace cc {
-namespace {
-
-TEST(BaseProtoConversionsTest, SerializeTimeTicks) {
- base::TimeTicks ticks;
- base::TimeTicks new_ticks;
-
- ticks = base::TimeTicks::FromInternalValue(2);
- new_ticks = ProtoToTimeTicks(TimeTicksToProto(ticks));
- EXPECT_EQ(ticks, new_ticks);
-
- ticks = base::TimeTicks::Now();
- new_ticks = ProtoToTimeTicks(TimeTicksToProto(ticks));
- EXPECT_EQ(ticks, new_ticks);
-
- ticks = base::TimeTicks::FromInternalValue(0);
- new_ticks = ProtoToTimeTicks(TimeTicksToProto(ticks));
- EXPECT_EQ(ticks, new_ticks);
-}
-
-} // namespace
-} // namespace cc
« no previous file with comments | « cc/proto/base_conversions.cc ('k') | cc/proto/cc_conversions.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698