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

Unified Diff: chrome/browser/sync/test/engine/test_user_share.h

Issue 10147003: [Sync] Move 'syncapi_core' and 'sync_unit_tests' targets to sync/ (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix Win update errors Created 8 years, 8 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
Index: chrome/browser/sync/test/engine/test_user_share.h
diff --git a/chrome/browser/sync/test/engine/test_user_share.h b/chrome/browser/sync/test/engine/test_user_share.h
deleted file mode 100644
index dc16c2bd8699166da37976f7bb9704dbb05aa2dd..0000000000000000000000000000000000000000
--- a/chrome/browser/sync/test/engine/test_user_share.h
+++ /dev/null
@@ -1,67 +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.
-//
-// A handy class that takes care of setting up and destroying a
-// sync_api::UserShare instance for unit tests that require one.
-//
-// The expected usage is to make this a component of your test fixture:
-//
-// class AwesomenessTest : public testing::Test {
-// public:
-// virtual void SetUp() {
-// test_user_share_.SetUp();
-// }
-// virtual void TearDown() {
-// test_user_share_.TearDown();
-// }
-// protected:
-// TestUserShare test_user_share_;
-// };
-//
-// Then, in your tests:
-//
-// TEST_F(AwesomenessTest, IsMaximal) {
-// sync_api::ReadTransaction trans(test_user_share_.user_share());
-// ...
-// }
-//
-
-#ifndef CHROME_BROWSER_SYNC_TEST_ENGINE_TEST_USER_SHARE_H_
-#define CHROME_BROWSER_SYNC_TEST_ENGINE_TEST_USER_SHARE_H_
-#pragma once
-
-#include "base/basictypes.h"
-#include "chrome/browser/sync/internal_api/user_share.h"
-#include "sync/test/engine/test_directory_setter_upper.h"
-
-namespace browser_sync {
-
-class TestUserShare {
- public:
- TestUserShare();
- ~TestUserShare();
-
- // Sets up the UserShare instance. Clears any existing database
- // backing files that might exist on disk.
- void SetUp();
-
- // Undo everything done by SetUp(): closes the UserShare and deletes
- // the backing files. Before closing the directory, this will run
- // the directory invariant checks and perform the SaveChanges action
- // on the user share's directory.
- void TearDown();
-
- // Non-NULL iff called between a call to SetUp() and TearDown().
- sync_api::UserShare* user_share();
-
- private:
- TestDirectorySetterUpper dir_maker_;
- scoped_ptr<sync_api::UserShare> user_share_;
-
- DISALLOW_COPY_AND_ASSIGN(TestUserShare);
-};
-
-} // namespace browser_sync
-
-#endif // CHROME_BROWSER_SYNC_TEST_ENGINE_TEST_USER_SHARE_H_
« no previous file with comments | « chrome/browser/sync/profile_sync_service_typed_url_unittest.cc ('k') | chrome/browser/sync/test/engine/test_user_share.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698