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

Side by Side Diff: Source/core/rendering/RenderView.h

Issue 16081003: [CSS] -webkit-var must be case sensitive according to specs (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Use foreground color to render overtype caret Created 7 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
« no previous file with comments | « Source/core/rendering/RenderObject.cpp ('k') | Source/core/rendering/RenderView.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org) 2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org)
3 * Copyright (C) 2006 Apple Computer, Inc. 3 * Copyright (C) 2006 Apple Computer, Inc.
4 * 4 *
5 * This library is free software; you can redistribute it and/or 5 * This library is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU Library General Public 6 * modify it under the terms of the GNU Library General Public
7 * License as published by the Free Software Foundation; either 7 * License as published by the Free Software Foundation; either
8 * version 2 of the License, or (at your option) any later version. 8 * version 2 of the License, or (at your option) any later version.
9 * 9 *
10 * This library is distributed in the hope that it will be useful, 10 * This library is distributed in the hope that it will be useful,
(...skipping 266 matching lines...) Expand 10 before | Expand all | Expand 10 after
277 LayoutState* m_layoutState; 277 LayoutState* m_layoutState;
278 unsigned m_layoutStateDisableCount; 278 unsigned m_layoutStateDisableCount;
279 OwnPtr<RenderLayerCompositor> m_compositor; 279 OwnPtr<RenderLayerCompositor> m_compositor;
280 OwnPtr<CustomFilterGlobalContext> m_customFilterGlobalContext; 280 OwnPtr<CustomFilterGlobalContext> m_customFilterGlobalContext;
281 OwnPtr<FlowThreadController> m_flowThreadController; 281 OwnPtr<FlowThreadController> m_flowThreadController;
282 RefPtr<IntervalArena> m_intervalArena; 282 RefPtr<IntervalArena> m_intervalArena;
283 283
284 RenderLazyBlock* m_firstLazyBlock; 284 RenderLazyBlock* m_firstLazyBlock;
285 RenderQuote* m_renderQuoteHead; 285 RenderQuote* m_renderQuoteHead;
286 unsigned m_renderCounterCount; 286 unsigned m_renderCounterCount;
287
288 bool m_selectionWasCaret;
287 }; 289 };
288 290
289 inline RenderView* toRenderView(RenderObject* object) 291 inline RenderView* toRenderView(RenderObject* object)
290 { 292 {
291 ASSERT_WITH_SECURITY_IMPLICATION(!object || object->isRenderView()); 293 ASSERT_WITH_SECURITY_IMPLICATION(!object || object->isRenderView());
292 return static_cast<RenderView*>(object); 294 return static_cast<RenderView*>(object);
293 } 295 }
294 296
295 inline const RenderView* toRenderView(const RenderObject* object) 297 inline const RenderView* toRenderView(const RenderObject* object)
296 { 298 {
(...skipping 102 matching lines...) Expand 10 before | Expand all | Expand 10 after
399 RenderObject::FlowThreadState m_flowThreadState; 401 RenderObject::FlowThreadState m_flowThreadState;
400 bool m_fragmenting; 402 bool m_fragmenting;
401 #ifndef NDEBUG 403 #ifndef NDEBUG
402 LayoutState* m_layoutState; 404 LayoutState* m_layoutState;
403 #endif 405 #endif
404 }; 406 };
405 407
406 } // namespace WebCore 408 } // namespace WebCore
407 409
408 #endif // RenderView_h 410 #endif // RenderView_h
OLDNEW
« no previous file with comments | « Source/core/rendering/RenderObject.cpp ('k') | Source/core/rendering/RenderView.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698