Chromium Code Reviews| Index: ui/gfx/geometry/rect.h |
| diff --git a/ui/gfx/geometry/rect.h b/ui/gfx/geometry/rect.h |
| index 83258fd7e143252c17bffe779f5119af911c74ea..abded4b0f3a35fdddc8fc6c3cecb7c0df39e8405 100644 |
| --- a/ui/gfx/geometry/rect.h |
| +++ b/ui/gfx/geometry/rect.h |
| @@ -33,7 +33,6 @@ typedef struct tagRECT RECT; |
| namespace gfx { |
| class Insets; |
| - |
|
bbudge
2014/08/26 00:13:03
Why remove this line?
Derek Schuff
2014/08/26 00:32:31
leftover from experimental edits,fixed.
|
| class GFX_EXPORT Rect |
| : public RectBase<Rect, Point, Size, Insets, Vector2d, int> { |
| public: |
| @@ -131,7 +130,7 @@ inline Rect ScaleToEnclosedRect(const Rect& rect, float scale) { |
| return ScaleToEnclosedRect(rect, scale, scale); |
| } |
| -#if !defined(COMPILER_MSVC) |
| +#if !defined(COMPILER_MSVC) && !defined(__native_client__) |
| extern template class RectBase<Rect, Point, Size, Insets, Vector2d, int>; |
| #endif |