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

Unified Diff: sync/engine/clear_server_data.h

Issue 2130453004: [Sync] Move //sync to //components/sync. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase. Created 4 years, 5 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 | « sync/engine/backoff_delay_provider_unittest.cc ('k') | sync/engine/clear_server_data.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sync/engine/clear_server_data.h
diff --git a/sync/engine/clear_server_data.h b/sync/engine/clear_server_data.h
deleted file mode 100644
index 0ac1fa8687fbe97c0f9e26d9988522cd0d1a499c..0000000000000000000000000000000000000000
--- a/sync/engine/clear_server_data.h
+++ /dev/null
@@ -1,39 +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.
-
-#ifndef SYNC_ENGINE_CLEAR_SERVER_DATA_H_
-#define SYNC_ENGINE_CLEAR_SERVER_DATA_H_
-
-#include <string>
-
-#include "sync/base/sync_export.h"
-#include "sync/internal_api/public/util/syncer_error.h"
-#include "sync/protocol/sync.pb.h"
-
-namespace syncer {
-
-namespace sessions {
-class SyncSession;
-}
-
-// A ClearServerData operation.
-//
-// An instance of this class corresponds to a single operation and is
-// responsible for building a request, sending it, and interpreting the
-// response.
-class SYNC_EXPORT ClearServerData {
- public:
- explicit ClearServerData(const std::string& account_name);
- ~ClearServerData();
-
- // Sends the request, blocking until the request has completed.
- SyncerError SendRequest(sessions::SyncSession* session);
-
- private:
- sync_pb::ClientToServerMessage request_;
-};
-
-} // namespace syncer
-
-#endif // SYNC_ENGINE_CLEAR_SERVER_DATA_H_
« no previous file with comments | « sync/engine/backoff_delay_provider_unittest.cc ('k') | sync/engine/clear_server_data.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698