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

Side by Side Diff: third_party/WebKit/Source/platform/mac/LocalCurrentGraphicsContext.h

Issue 2940933003: DO NOT SUBMIT results of new clang-format (Closed)
Patch Set: Created 3 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
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2006 Apple Computer, Inc. 2 * Copyright (C) 2006 Apple Computer, Inc.
3 * 3 *
4 * This library is free software; you can redistribute it and/or 4 * This library is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Library General Public 5 * modify it under the terms of the GNU Library General Public
6 * License as published by the Free Software Foundation; either 6 * License as published by the Free Software Foundation; either
7 * version 2 of the License, or (at your option) any later version. 7 * version 2 of the License, or (at your option) any later version.
8 * 8 *
9 * This library is distributed in the hope that it will be useful, 9 * This library is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of 10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after
42 ~LocalCurrentGraphicsContext(); 42 ~LocalCurrentGraphicsContext();
43 CGContextRef CgContext(); 43 CGContextRef CgContext();
44 44
45 private: 45 private:
46 PaintCanvas* saved_canvas_; 46 PaintCanvas* saved_canvas_;
47 NSGraphicsContext* saved_ns_graphics_context_; 47 NSGraphicsContext* saved_ns_graphics_context_;
48 bool did_set_graphics_context_; 48 bool did_set_graphics_context_;
49 IntRect inflated_dirty_rect_; 49 IntRect inflated_dirty_rect_;
50 GraphicsContextCanvas graphics_context_canvas_; 50 GraphicsContextCanvas graphics_context_canvas_;
51 }; 51 };
52 } 52 } // namespace blink
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698