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

Side by Side Diff: Source/core/css/RuleSet.cpp

Issue 54053006: Move weborigin/ under platform/ so that it may someday call platform APIs (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Stale refernence to weboriginexport in .gpyi Created 7 years, 1 month 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 | Annotate | Revision Log
« no previous file with comments | « Source/core/css/CSSValue.h ('k') | Source/core/css/StyleSheetContents.h » ('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 * (C) 2004-2005 Allan Sandfeld Jensen (kde@carewolf.com) 3 * (C) 2004-2005 Allan Sandfeld Jensen (kde@carewolf.com)
4 * Copyright (C) 2006, 2007 Nicholas Shanks (webkit@nickshanks.com) 4 * Copyright (C) 2006, 2007 Nicholas Shanks (webkit@nickshanks.com)
5 * Copyright (C) 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012 Apple Inc. All r ights reserved. 5 * Copyright (C) 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012 Apple Inc. All r ights reserved.
6 * Copyright (C) 2007 Alexey Proskuryakov <ap@webkit.org> 6 * Copyright (C) 2007 Alexey Proskuryakov <ap@webkit.org>
7 * Copyright (C) 2007, 2008 Eric Seidel <eric@webkit.org> 7 * Copyright (C) 2007, 2008 Eric Seidel <eric@webkit.org>
8 * Copyright (C) 2008, 2009 Torch Mobile Inc. All rights reserved. (http://www.t orchmobile.com/) 8 * Copyright (C) 2008, 2009 Torch Mobile Inc. All rights reserved. (http://www.t orchmobile.com/)
9 * Copyright (c) 2011, Code Aurora Forum. All rights reserved. 9 * Copyright (c) 2011, Code Aurora Forum. All rights reserved.
10 * Copyright (C) Research In Motion Limited 2011. All rights reserved. 10 * Copyright (C) Research In Motion Limited 2011. All rights reserved.
(...skipping 26 matching lines...) Expand all
37 #include "core/css/CSSSelectorList.h" 37 #include "core/css/CSSSelectorList.h"
38 #include "core/css/MediaQueryEvaluator.h" 38 #include "core/css/MediaQueryEvaluator.h"
39 #include "core/css/SelectorChecker.h" 39 #include "core/css/SelectorChecker.h"
40 #include "core/css/SelectorCheckerFastPath.h" 40 #include "core/css/SelectorCheckerFastPath.h"
41 #include "core/css/SelectorFilter.h" 41 #include "core/css/SelectorFilter.h"
42 #include "core/css/StyleRule.h" 42 #include "core/css/StyleRule.h"
43 #include "core/css/StyleRuleImport.h" 43 #include "core/css/StyleRuleImport.h"
44 #include "core/css/StyleSheetContents.h" 44 #include "core/css/StyleSheetContents.h"
45 #include "core/css/resolver/StyleResolver.h" 45 #include "core/css/resolver/StyleResolver.h"
46 #include "core/html/track/TextTrackCue.h" 46 #include "core/html/track/TextTrackCue.h"
47 #include "weborigin/SecurityOrigin.h" 47 #include "platform/weborigin/SecurityOrigin.h"
48 48
49 namespace WebCore { 49 namespace WebCore {
50 50
51 using namespace HTMLNames; 51 using namespace HTMLNames;
52 52
53 // ----------------------------------------------------------------- 53 // -----------------------------------------------------------------
54 54
55 static inline bool isDocumentScope(const ContainerNode* scope) 55 static inline bool isDocumentScope(const ContainerNode* scope)
56 { 56 {
57 return !scope || scope->isDocumentNode(); 57 return !scope || scope->isDocumentNode();
(...skipping 405 matching lines...) Expand 10 before | Expand all | Expand 10 after
463 m_linkPseudoClassRules.shrinkToFit(); 463 m_linkPseudoClassRules.shrinkToFit();
464 m_cuePseudoRules.shrinkToFit(); 464 m_cuePseudoRules.shrinkToFit();
465 m_focusPseudoClassRules.shrinkToFit(); 465 m_focusPseudoClassRules.shrinkToFit();
466 m_universalRules.shrinkToFit(); 466 m_universalRules.shrinkToFit();
467 m_pageRules.shrinkToFit(); 467 m_pageRules.shrinkToFit();
468 m_viewportRules.shrinkToFit(); 468 m_viewportRules.shrinkToFit();
469 m_fontFaceRules.shrinkToFit(); 469 m_fontFaceRules.shrinkToFit();
470 } 470 }
471 471
472 } // namespace WebCore 472 } // namespace WebCore
OLDNEW
« no previous file with comments | « Source/core/css/CSSValue.h ('k') | Source/core/css/StyleSheetContents.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698