Re-enable ExtensionCrxInstallerTest.InstallToSharedLocation
[chromium-blink-merge.git] / cc / resources / shared_bitmap_manager.h
blobd5239e4b88d78ccb70b0ab72a34e3c58951e2c32
1 // Copyright 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #ifndef CC_RESOURCES_SHARED_BITMAP_MANAGER_H_
6 #define CC_RESOURCES_SHARED_BITMAP_MANAGER_H_
8 #include "base/basictypes.h"
9 #include "base/memory/scoped_ptr.h"
10 #include "cc/base/cc_export.h"
11 #include "cc/resources/shared_bitmap.h"
12 #include "ui/gfx/geometry/size.h"
14 namespace cc {
16 class CC_EXPORT SharedBitmapManager {
17 public:
18 SharedBitmapManager() {}
19 virtual ~SharedBitmapManager() {}
21 virtual scoped_ptr<SharedBitmap> AllocateSharedBitmap(const gfx::Size&) = 0;
22 virtual scoped_ptr<SharedBitmap> GetSharedBitmapFromId(
23 const gfx::Size&,
24 const SharedBitmapId&) = 0;
26 private:
27 DISALLOW_COPY_AND_ASSIGN(SharedBitmapManager);
30 } // namespace cc
32 #endif // CC_RESOURCES_SHARED_BITMAP_MANAGER_H_