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

Unified Diff: gpu/command_buffer/service/async_pixel_transfer_delegate_mock.h

Issue 1186393004: gpu: Remove async texture uploads. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 5 years, 4 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: gpu/command_buffer/service/async_pixel_transfer_delegate_mock.h
diff --git a/gpu/command_buffer/service/async_pixel_transfer_delegate_mock.h b/gpu/command_buffer/service/async_pixel_transfer_delegate_mock.h
deleted file mode 100644
index 9d2873023ed364847c2b59d07934f221f503ea90..0000000000000000000000000000000000000000
--- a/gpu/command_buffer/service/async_pixel_transfer_delegate_mock.h
+++ /dev/null
@@ -1,39 +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 GPU_COMMAND_BUFFER_SERVICE_ASYNC_PIXEL_TRANSFER_DELEGATE_MOCK
-#define GPU_COMMAND_BUFFER_SERVICE_ASYNC_PIXEL_TRANSFER_DELEGATE_MOCK
-
-#include "base/basictypes.h"
-#include "gpu/command_buffer/service/async_pixel_transfer_delegate.h"
-#include "testing/gmock/include/gmock/gmock.h"
-
-namespace gpu {
-
-class MockAsyncPixelTransferDelegate : public AsyncPixelTransferDelegate {
- public:
- MockAsyncPixelTransferDelegate();
- virtual ~MockAsyncPixelTransferDelegate();
-
- // Called in ~MockAsyncPixelTransferDelegate.
- MOCK_METHOD0(Destroy, void());
-
- // Implement AsyncPixelTransferDelegate.
- MOCK_METHOD3(AsyncTexImage2D,
- void(const AsyncTexImage2DParams& tex_params,
- const AsyncMemoryParams& mem_params,
- const base::Closure& bind_callback));
- MOCK_METHOD2(AsyncTexSubImage2D,
- void(const AsyncTexSubImage2DParams& tex_params,
- const AsyncMemoryParams& mem_params));
- MOCK_METHOD0(TransferIsInProgress, bool());
- MOCK_METHOD0(WaitForTransferCompletion, void());
-
- private:
- DISALLOW_COPY_AND_ASSIGN(MockAsyncPixelTransferDelegate);
-};
-
-} // namespace gpu
-
-#endif // GPU_COMMAND_BUFFER_SERVICE_ASYNC_PIXEL_TRANSFER_DELEGATE_MOCK

Powered by Google App Engine
This is Rietveld 408576698