Merge pull request #13301 from electron/revert-frame-sub-deprecation
fix: revert frame subscriber deprecation and re-enable tests
This commit is contained in:
commit
04a7a34c42
3 changed files with 20 additions and 11 deletions
|
@ -13,6 +13,8 @@
|
||||||
#include "ui/gfx/geometry/rect_conversions.h"
|
#include "ui/gfx/geometry/rect_conversions.h"
|
||||||
#include "ui/gfx/skbitmap_operations.h"
|
#include "ui/gfx/skbitmap_operations.h"
|
||||||
|
|
||||||
|
#include "atom/common/node_includes.h"
|
||||||
|
|
||||||
namespace atom {
|
namespace atom {
|
||||||
|
|
||||||
namespace api {
|
namespace api {
|
||||||
|
@ -70,17 +72,26 @@ void FrameSubscriber::Done(const gfx::Rect& damage, const SkBitmap& frame) {
|
||||||
if (frame.drawsNothing())
|
if (frame.drawsNothing())
|
||||||
return;
|
return;
|
||||||
|
|
||||||
|
v8::Locker locker(isolate_);
|
||||||
|
v8::HandleScope handle_scope(isolate_);
|
||||||
|
|
||||||
const_cast<SkBitmap&>(frame).setAlphaType(kPremul_SkAlphaType);
|
const_cast<SkBitmap&>(frame).setAlphaType(kPremul_SkAlphaType);
|
||||||
|
const SkBitmap& bitmap = only_dirty_ ? SkBitmapOperations::CreateTiledBitmap(
|
||||||
|
frame, damage.x(), damage.y(),
|
||||||
|
damage.width(), damage.height())
|
||||||
|
: frame;
|
||||||
|
|
||||||
|
size_t rgb_row_size = bitmap.width() * bitmap.bytesPerPixel();
|
||||||
|
auto source = static_cast<const char*>(bitmap.getPixels());
|
||||||
|
|
||||||
|
v8::MaybeLocal<v8::Object> buffer =
|
||||||
|
node::Buffer::Copy(isolate_, source, rgb_row_size * bitmap.height());
|
||||||
|
auto local_buffer = buffer.ToLocalChecked();
|
||||||
|
|
||||||
v8::Local<v8::Value> damage_rect =
|
v8::Local<v8::Value> damage_rect =
|
||||||
mate::Converter<gfx::Rect>::ToV8(isolate_, damage);
|
mate::Converter<gfx::Rect>::ToV8(isolate_, damage);
|
||||||
|
|
||||||
if (only_dirty_) {
|
callback_.Run(local_buffer, damage_rect);
|
||||||
const SkBitmap& damageFrame = SkBitmapOperations::CreateTiledBitmap(
|
|
||||||
frame, damage.x(), damage.y(), damage.width(), damage.height());
|
|
||||||
callback_.Run(gfx::Image::CreateFrom1xBitmap(damageFrame), damage_rect);
|
|
||||||
} else {
|
|
||||||
callback_.Run(gfx::Image::CreateFrom1xBitmap(frame), damage_rect);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
} // namespace api
|
} // namespace api
|
||||||
|
|
|
@ -22,7 +22,7 @@ class WebContents;
|
||||||
class FrameSubscriber : public content::WebContentsObserver {
|
class FrameSubscriber : public content::WebContentsObserver {
|
||||||
public:
|
public:
|
||||||
using FrameCaptureCallback =
|
using FrameCaptureCallback =
|
||||||
base::Callback<void(const gfx::Image&, v8::Local<v8::Value>)>;
|
base::Callback<void(v8::Local<v8::Value>, v8::Local<v8::Value>)>;
|
||||||
|
|
||||||
FrameSubscriber(v8::Isolate* isolate,
|
FrameSubscriber(v8::Isolate* isolate,
|
||||||
content::WebContents* web_contents,
|
content::WebContents* web_contents,
|
||||||
|
|
|
@ -2058,9 +2058,7 @@ describe('BrowserWindow module', () => {
|
||||||
})
|
})
|
||||||
})
|
})
|
||||||
|
|
||||||
// TODO(alexeykuzmin): [Ch66] Crashes the app.
|
describe('beginFrameSubscription method', () => {
|
||||||
// Fix and enable the test.
|
|
||||||
xdescribe('beginFrameSubscription method', () => {
|
|
||||||
before(function () {
|
before(function () {
|
||||||
// This test is too slow, only test it on CI.
|
// This test is too slow, only test it on CI.
|
||||||
if (!isCI) {
|
if (!isCI) {
|
||||||
|
|
Loading…
Reference in a new issue