Index: webkit/glue/media/mock_media_resource_loader_bridge_factory.h |
diff --git a/webkit/glue/media/mock_media_resource_loader_bridge_factory.h b/webkit/glue/media/mock_media_resource_loader_bridge_factory.h |
deleted file mode 100644 |
index 3c0a3ae3a557a92eb60bc5556a07a8fa2ac2b0ea..0000000000000000000000000000000000000000 |
--- a/webkit/glue/media/mock_media_resource_loader_bridge_factory.h |
+++ /dev/null |
@@ -1,36 +0,0 @@ |
-// Copyright (c) 2010 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 WEBKIT_GLUE_MEDIA_MOCK_MEDIA_RESOURCE_LOADER_BRIDGE_FACTORY_H_ |
-#define WEBKIT_GLUE_MEDIA_MOCK_MEDIA_RESOURCE_LOADER_BRIDGE_FACTORY_H_ |
- |
-#include "testing/gmock/include/gmock/gmock.h" |
-#include "webkit/glue/media/media_resource_loader_bridge_factory.h" |
- |
-namespace webkit_glue { |
- |
-class MockMediaResourceLoaderBridgeFactory |
- : public webkit_glue::MediaResourceLoaderBridgeFactory { |
- public: |
- MockMediaResourceLoaderBridgeFactory() { |
- } |
- |
- virtual ~MockMediaResourceLoaderBridgeFactory() { |
- OnDestroy(); |
- } |
- |
- MOCK_METHOD4(CreateBridge, |
- webkit_glue::ResourceLoaderBridge*(const GURL& url, |
- int load_flags, |
- int64 first_byte_position, |
- int64 last_byte_position)); |
- MOCK_METHOD0(OnDestroy, void()); |
- |
- private: |
- DISALLOW_COPY_AND_ASSIGN(MockMediaResourceLoaderBridgeFactory); |
-}; |
- |
-} // namespace webkit_glue |
- |
-#endif // WEBKIT_GLUE_MEDIA_MOCK_MEDIA_RESOURCE_LOADER_BRIDGE_FACTORY_H_ |