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

Side by Side Diff: third_party/WebKit/Source/core/css/StyleSheetContents.cpp

Issue 2504883003: Loading: move *StyleSheetResource to core/loader/resource (Closed)
Patch Set: [rebase] Created 4 years 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 * (C) 1999-2003 Lars Knoll (knoll@kde.org) 2 * (C) 1999-2003 Lars Knoll (knoll@kde.org)
3 * Copyright (C) 2004, 2006, 2007, 2012 Apple Inc. All rights reserved. 3 * Copyright (C) 2004, 2006, 2007, 2012 Apple Inc. All rights reserved.
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 12 matching lines...) Expand all
23 #include "core/css/CSSStyleSheet.h" 23 #include "core/css/CSSStyleSheet.h"
24 #include "core/css/CSSTiming.h" 24 #include "core/css/CSSTiming.h"
25 #include "core/css/StylePropertySet.h" 25 #include "core/css/StylePropertySet.h"
26 #include "core/css/StyleRule.h" 26 #include "core/css/StyleRule.h"
27 #include "core/css/StyleRuleImport.h" 27 #include "core/css/StyleRuleImport.h"
28 #include "core/css/StyleRuleNamespace.h" 28 #include "core/css/StyleRuleNamespace.h"
29 #include "core/css/parser/CSSParser.h" 29 #include "core/css/parser/CSSParser.h"
30 #include "core/dom/Document.h" 30 #include "core/dom/Document.h"
31 #include "core/dom/Node.h" 31 #include "core/dom/Node.h"
32 #include "core/dom/StyleEngine.h" 32 #include "core/dom/StyleEngine.h"
33 #include "core/fetch/CSSStyleSheetResource.h"
34 #include "core/frame/UseCounter.h" 33 #include "core/frame/UseCounter.h"
35 #include "core/inspector/InspectorTraceEvents.h" 34 #include "core/inspector/InspectorTraceEvents.h"
35 #include "core/loader/resource/CSSStyleSheetResource.h"
36 #include "platform/Histogram.h" 36 #include "platform/Histogram.h"
37 #include "platform/tracing/TraceEvent.h" 37 #include "platform/tracing/TraceEvent.h"
38 #include "platform/weborigin/SecurityOrigin.h" 38 #include "platform/weborigin/SecurityOrigin.h"
39 39
40 namespace blink { 40 namespace blink {
41 41
42 // Rough size estimate for the memory cache. 42 // Rough size estimate for the memory cache.
43 unsigned StyleSheetContents::estimatedSizeInBytes() const { 43 unsigned StyleSheetContents::estimatedSizeInBytes() const {
44 // Note that this does not take into account size of the strings hanging from 44 // Note that this does not take into account size of the strings hanging from
45 // various objects. The assumption is that nearly all of of them are atomic 45 // various objects. The assumption is that nearly all of of them are atomic
(...skipping 639 matching lines...) Expand 10 before | Expand all | Expand 10 after
685 visitor->trace(m_importRules); 685 visitor->trace(m_importRules);
686 visitor->trace(m_namespaceRules); 686 visitor->trace(m_namespaceRules);
687 visitor->trace(m_childRules); 687 visitor->trace(m_childRules);
688 visitor->trace(m_loadingClients); 688 visitor->trace(m_loadingClients);
689 visitor->trace(m_completedClients); 689 visitor->trace(m_completedClients);
690 visitor->trace(m_ruleSet); 690 visitor->trace(m_ruleSet);
691 visitor->trace(m_referencedFromResource); 691 visitor->trace(m_referencedFromResource);
692 } 692 }
693 693
694 } // namespace blink 694 } // namespace blink
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/core/css/StyleRuleImport.cpp ('k') | third_party/WebKit/Source/core/dom/ProcessingInstruction.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698