Index: chrome/browser/chromeos/gdata/mock_gdata_sync_client.h |
diff --git a/chrome/browser/chromeos/gdata/mock_gdata_sync_client.h b/chrome/browser/chromeos/gdata/mock_gdata_sync_client.h |
deleted file mode 100644 |
index 80f5763c025f691925fa04c2c4ab6477721fa0fd..0000000000000000000000000000000000000000 |
--- a/chrome/browser/chromeos/gdata/mock_gdata_sync_client.h |
+++ /dev/null |
@@ -1,38 +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. |
- |
-#ifndef CHROME_BROWSER_CHROMEOS_GDATA_MOCK_GDATA_SYNC_CLIENT_H_ |
-#define CHROME_BROWSER_CHROMEOS_GDATA_MOCK_GDATA_SYNC_CLIENT_H_ |
- |
-#include "chrome/browser/chromeos/gdata/gdata_sync_client.h" |
-#include "content/public/browser/notification_details.h" |
-#include "content/public/browser/notification_source.h" |
-#include "testing/gmock/include/gmock/gmock.h" |
- |
-namespace chromeos { |
-class Network; |
-class NetworkLibrary; |
-} |
- |
-namespace gdata { |
-class GDataFileSystemInterface; |
- |
-// Mock for GDataSyncClientInterface. |
-class MockGDataSyncClient : public GDataSyncClientInterface, |
- public GDataCache::Observer { |
- public: |
- MockGDataSyncClient(); |
- virtual ~MockGDataSyncClient(); |
- |
- MOCK_METHOD0(Initialize, void()); |
- MOCK_METHOD2(OnCachePinned, void(const std::string& resource_id, |
- const std::string& md5)); |
- MOCK_METHOD2(OnCacheUnpinned, void(const std::string& resource_id, |
- const std::string& md5)); |
- MOCK_METHOD1(OnCacheCommitted, void(const std::string& resource_id)); |
-}; |
- |
-} // namespace gdata |
- |
-#endif // CHROME_BROWSER_CHROMEOS_GDATA_MOCK_GDATA_SYNC_CLIENT_H_ |