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

Unified Diff: blimp/helium/mock_objects.cc

Issue 2602103002: Delete blimp/helium and remove references to it from dependent targets (Closed)
Patch Set: . Created 4 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 | « blimp/helium/mock_objects.h ('k') | blimp/helium/object_sync_state.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: blimp/helium/mock_objects.cc
diff --git a/blimp/helium/mock_objects.cc b/blimp/helium/mock_objects.cc
deleted file mode 100644
index 28d67c9d34730851265d77b601cf2b1e6d6c35d1..0000000000000000000000000000000000000000
--- a/blimp/helium/mock_objects.cc
+++ /dev/null
@@ -1,34 +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 "blimp/helium/mock_objects.h"
-
-namespace blimp {
-namespace helium {
-
-TestSyncableChangeset::TestSyncableChangeset() : value(this) {}
-
-TestSyncableChangeset::~TestSyncableChangeset() {}
-
-TestSyncableChangeset& TestSyncableChangeset::operator=(
- const TestSyncableChangeset& other) {
- value.Set(other.value());
- return *this;
-}
-
-MockSyncable::MockSyncable() = default;
-
-MockSyncable::~MockSyncable() = default;
-
-std::unique_ptr<TestSyncableChangeset> MockSyncable::CreateChangeset(
- Revision from) const {
- return base::WrapUnique<TestSyncableChangeset>(CreateChangesetMock(from));
-}
-
-MockStreamPump::MockStreamPump() = default;
-
-MockStreamPump::~MockStreamPump() = default;
-
-} // namespace helium
-} // namespace blimp
« no previous file with comments | « blimp/helium/mock_objects.h ('k') | blimp/helium/object_sync_state.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698