summaryrefslogtreecommitdiffstats
path: root/gpu/command_buffer/service/async_pixel_transfer_delegate_mock.h
blob: 9d2873023ed364847c2b59d07934f221f503ea90 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
// 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