OLD | NEW |
1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2013 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 #include "content/renderer/skia_benchmarking_extension.h" | 5 #include "content/renderer/skia_benchmarking_extension.h" |
6 | 6 |
7 #include "base/base64.h" | 7 #include "base/base64.h" |
8 #include "base/time/time.h" | 8 #include "base/time/time.h" |
9 #include "base/values.h" | 9 #include "base/values.h" |
10 #include "cc/base/math_util.h" | 10 #include "cc/base/math_util.h" |
11 #include "cc/resources/picture.h" | 11 #include "cc/playback/picture.h" |
12 #include "content/public/child/v8_value_converter.h" | 12 #include "content/public/child/v8_value_converter.h" |
13 #include "content/renderer/chrome_object_extensions_utils.h" | 13 #include "content/renderer/chrome_object_extensions_utils.h" |
14 #include "content/renderer/render_thread_impl.h" | 14 #include "content/renderer/render_thread_impl.h" |
15 #include "gin/arguments.h" | 15 #include "gin/arguments.h" |
16 #include "gin/handle.h" | 16 #include "gin/handle.h" |
17 #include "gin/object_template_builder.h" | 17 #include "gin/object_template_builder.h" |
18 #include "skia/ext/benchmarking_canvas.h" | 18 #include "skia/ext/benchmarking_canvas.h" |
19 #include "third_party/WebKit/public/web/WebArrayBuffer.h" | 19 #include "third_party/WebKit/public/web/WebArrayBuffer.h" |
20 #include "third_party/WebKit/public/web/WebArrayBufferConverter.h" | 20 #include "third_party/WebKit/public/web/WebArrayBufferConverter.h" |
21 #include "third_party/WebKit/public/web/WebFrame.h" | 21 #include "third_party/WebKit/public/web/WebFrame.h" |
(...skipping 264 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
286 v8::Local<v8::Object> result = v8::Object::New(isolate); | 286 v8::Local<v8::Object> result = v8::Object::New(isolate); |
287 result->Set(v8::String::NewFromUtf8(isolate, "width"), | 287 result->Set(v8::String::NewFromUtf8(isolate, "width"), |
288 v8::Number::New(isolate, picture->LayerRect().width())); | 288 v8::Number::New(isolate, picture->LayerRect().width())); |
289 result->Set(v8::String::NewFromUtf8(isolate, "height"), | 289 result->Set(v8::String::NewFromUtf8(isolate, "height"), |
290 v8::Number::New(isolate, picture->LayerRect().height())); | 290 v8::Number::New(isolate, picture->LayerRect().height())); |
291 | 291 |
292 args->Return(result); | 292 args->Return(result); |
293 } | 293 } |
294 | 294 |
295 } // namespace content | 295 } // namespace content |
OLD | NEW |