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

Side by Side Diff: cc/raster/bitmap_raster_buffer_provider.h

Issue 2081863002: Revert of cc: Add mailbox support to ResourceProvider write locks. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@worker_context_stream
Patch Set: manual revert Created 4 years, 6 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 unified diff | Download patch
« no previous file with comments | « cc/output/gl_renderer.cc ('k') | cc/raster/bitmap_raster_buffer_provider.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef CC_RASTER_BITMAP_RASTER_BUFFER_PROVIDER_H_ 5 #ifndef CC_RASTER_BITMAP_RASTER_BUFFER_PROVIDER_H_
6 #define CC_RASTER_BITMAP_RASTER_BUFFER_PROVIDER_H_ 6 #define CC_RASTER_BITMAP_RASTER_BUFFER_PROVIDER_H_
7 7
8 #include <stdint.h> 8 #include <stdint.h>
9 9
10 #include "base/macros.h" 10 #include "base/macros.h"
(...skipping 15 matching lines...) Expand all
26 26
27 static std::unique_ptr<RasterBufferProvider> Create( 27 static std::unique_ptr<RasterBufferProvider> Create(
28 ResourceProvider* resource_provider); 28 ResourceProvider* resource_provider);
29 29
30 // Overridden from RasterBufferProvider: 30 // Overridden from RasterBufferProvider:
31 std::unique_ptr<RasterBuffer> AcquireBufferForRaster( 31 std::unique_ptr<RasterBuffer> AcquireBufferForRaster(
32 const Resource* resource, 32 const Resource* resource,
33 uint64_t resource_content_id, 33 uint64_t resource_content_id,
34 uint64_t previous_content_id) override; 34 uint64_t previous_content_id) override;
35 void ReleaseBufferForRaster(std::unique_ptr<RasterBuffer> buffer) override; 35 void ReleaseBufferForRaster(std::unique_ptr<RasterBuffer> buffer) override;
36 bool OrderingBarrier() override; 36 void OrderingBarrier() override;
37 ResourceFormat GetResourceFormat(bool must_support_alpha) const override; 37 ResourceFormat GetResourceFormat(bool must_support_alpha) const override;
38 bool GetResourceRequiresSwizzle(bool must_support_alpha) const override; 38 bool GetResourceRequiresSwizzle(bool must_support_alpha) const override;
39 void Shutdown() override; 39 void Shutdown() override;
40 40
41 protected: 41 protected:
42 explicit BitmapRasterBufferProvider(ResourceProvider* resource_provider); 42 explicit BitmapRasterBufferProvider(ResourceProvider* resource_provider);
43 43
44 private: 44 private:
45 std::unique_ptr<base::trace_event::ConvertableToTraceFormat> StateAsValue() 45 std::unique_ptr<base::trace_event::ConvertableToTraceFormat> StateAsValue()
46 const; 46 const;
47 47
48 ResourceProvider* resource_provider_; 48 ResourceProvider* resource_provider_;
49 49
50 DISALLOW_COPY_AND_ASSIGN(BitmapRasterBufferProvider); 50 DISALLOW_COPY_AND_ASSIGN(BitmapRasterBufferProvider);
51 }; 51 };
52 52
53 } // namespace cc 53 } // namespace cc
54 54
55 #endif // CC_RASTER_BITMAP_RASTER_BUFFER_PROVIDER_H_ 55 #endif // CC_RASTER_BITMAP_RASTER_BUFFER_PROVIDER_H_
OLDNEW
« no previous file with comments | « cc/output/gl_renderer.cc ('k') | cc/raster/bitmap_raster_buffer_provider.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698