summaryrefslogtreecommitdiff
path: root/chromium/third_party/blink/renderer/core/css/style_sheet_collection.cc
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/third_party/blink/renderer/core/css/style_sheet_collection.cc')
-rw-r--r--chromium/third_party/blink/renderer/core/css/style_sheet_collection.cc8
1 files changed, 4 insertions, 4 deletions
diff --git a/chromium/third_party/blink/renderer/core/css/style_sheet_collection.cc b/chromium/third_party/blink/renderer/core/css/style_sheet_collection.cc
index a06c56b4cda..04507e2844f 100644
--- a/chromium/third_party/blink/renderer/core/css/style_sheet_collection.cc
+++ b/chromium/third_party/blink/renderer/core/css/style_sheet_collection.cc
@@ -37,13 +37,13 @@ StyleSheetCollection::StyleSheetCollection() = default;
void StyleSheetCollection::Dispose() {
style_sheets_for_style_sheet_list_.clear();
- active_author_style_sheets_.clear();
+ active_style_sheets_.clear();
}
void StyleSheetCollection::Swap(StyleSheetCollection& other) {
swap(style_sheets_for_style_sheet_list_,
other.style_sheets_for_style_sheet_list_);
- active_author_style_sheets_.swap(other.active_author_style_sheets_);
+ active_style_sheets_.swap(other.active_style_sheets_);
sheet_list_dirty_ = false;
}
@@ -55,7 +55,7 @@ void StyleSheetCollection::SwapSheetsForSheetList(
void StyleSheetCollection::AppendActiveStyleSheet(
const ActiveStyleSheet& active_sheet) {
- active_author_style_sheets_.push_back(active_sheet);
+ active_style_sheets_.push_back(active_sheet);
}
void StyleSheetCollection::AppendSheetForList(StyleSheet* sheet) {
@@ -63,7 +63,7 @@ void StyleSheetCollection::AppendSheetForList(StyleSheet* sheet) {
}
void StyleSheetCollection::Trace(Visitor* visitor) const {
- visitor->Trace(active_author_style_sheets_);
+ visitor->Trace(active_style_sheets_);
visitor->Trace(style_sheets_for_style_sheet_list_);
}