summaryrefslogtreecommitdiffstats
path: root/content/test/test_context_provider_factory.h
blob: a6ad85b5b9c35dce4ef26c29339dffa4e63d8971 (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
40
// Copyright 2014 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 CONTENT_TEST_TEST_CONTEXT_PROVIDER_FACTORY_H_
#define CONTENT_TEST_TEST_CONTEXT_PROVIDER_FACTORY_H_

#include "base/memory/ref_counted.h"

namespace cc {
class ContextProvider;
}

namespace webkit {
namespace gpu {
class ContextProviderInProcess;
}
}

namespace content {

class TestContextProviderFactory {
 public:
  // The returned pointer is static and should not be deleted by the caller.
  static TestContextProviderFactory* GetInstance();

  scoped_refptr<cc::ContextProvider> OffscreenContextProviderForMainThread();

 private:
  TestContextProviderFactory();
  ~TestContextProviderFactory();

  scoped_refptr<webkit::gpu::ContextProviderInProcess> main_thread_;

  DISALLOW_COPY_AND_ASSIGN(TestContextProviderFactory);
};

}  // namespace content

#endif  // CONTENT_TEST_TEST_CONTEXT_PROVIDER_FACTORY_H_