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

Side by Side Diff: third_party/WebKit/Source/core/frame/ImageBitmap.h

Issue 2848243004: Clean up bindings/core/v8 (Part 2) (Closed)
Patch Set: Rebase Created 3 years, 7 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
OLDNEW
1 // Copyright 2013 The Chromium Authors. All rights reserved. 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 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 ImageBitmap_h 5 #ifndef ImageBitmap_h
6 #define ImageBitmap_h 6 #define ImageBitmap_h
7 7
8 #include <memory> 8 #include <memory>
9 #include "bindings/core/v8/ScriptWrappable.h"
10 #include "core/CoreExport.h" 9 #include "core/CoreExport.h"
11 #include "core/html/canvas/CanvasImageSource.h" 10 #include "core/html/canvas/CanvasImageSource.h"
12 #include "core/html/canvas/ImageElementBase.h" 11 #include "core/html/canvas/ImageElementBase.h"
13 #include "core/imagebitmap/ImageBitmapOptions.h" 12 #include "core/imagebitmap/ImageBitmapOptions.h"
14 #include "core/imagebitmap/ImageBitmapSource.h" 13 #include "core/imagebitmap/ImageBitmapSource.h"
14 #include "platform/bindings/ScriptWrappable.h"
15 #include "platform/geometry/IntRect.h" 15 #include "platform/geometry/IntRect.h"
16 #include "platform/graphics/Image.h" 16 #include "platform/graphics/Image.h"
17 #include "platform/graphics/ImageBuffer.h" 17 #include "platform/graphics/ImageBuffer.h"
18 #include "platform/graphics/StaticBitmapImage.h" 18 #include "platform/graphics/StaticBitmapImage.h"
19 #include "platform/heap/Handle.h" 19 #include "platform/heap/Handle.h"
20 #include "platform/wtf/PassRefPtr.h" 20 #include "platform/wtf/PassRefPtr.h"
21 #include "third_party/skia/include/core/SkRefCnt.h" 21 #include "third_party/skia/include/core/SkRefCnt.h"
22 22
23 namespace blink { 23 namespace blink {
24 class Document; 24 class Document;
(...skipping 136 matching lines...) Expand 10 before | Expand all | Expand 10 after
161 bool is_image_bitmap_premultiplied, 161 bool is_image_bitmap_premultiplied,
162 bool is_image_bitmap_origin_clean); 162 bool is_image_bitmap_origin_clean);
163 163
164 RefPtr<StaticBitmapImage> image_; 164 RefPtr<StaticBitmapImage> image_;
165 bool is_neutered_ = false; 165 bool is_neutered_ = false;
166 }; 166 };
167 167
168 } // namespace blink 168 } // namespace blink
169 169
170 #endif // ImageBitmap_h 170 #endif // ImageBitmap_h
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/core/frame/HostsUsingFeatures.cpp ('k') | third_party/WebKit/Source/core/frame/Location.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698