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

Side by Side Diff: third_party/WebKit/Source/core/inspector/InspectorStyleSheet.cpp

Issue 1835773002: Rename AtomicString::string() to AtomicString::getString(). (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix Windows Created 4 years, 8 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
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2010, Google Inc. All rights reserved. 2 * Copyright (C) 2010, Google Inc. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions 5 * modification, are permitted provided that the following conditions
6 * are met: 6 * are met:
7 * 1. Redistributions of source code must retain the above copyright 7 * 1. Redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer. 8 * notice, this list of conditions and the following disclaimer.
9 * 2. Redistributions in binary form must reproduce the above copyright 9 * 2. Redistributions in binary form must reproduce the above copyright
10 * notice, this list of conditions and the following disclaimer in the 10 * notice, this list of conditions and the following disclaimer in the
(...skipping 1754 matching lines...) Expand 10 before | Expand all | Expand 10 after
1765 return ruleSourceData; 1765 return ruleSourceData;
1766 } 1766 }
1767 1767
1768 CSSStyleDeclaration* InspectorStyleSheetForInlineStyle::inlineStyle() 1768 CSSStyleDeclaration* InspectorStyleSheetForInlineStyle::inlineStyle()
1769 { 1769 {
1770 return m_element->style(); 1770 return m_element->style();
1771 } 1771 }
1772 1772
1773 const String& InspectorStyleSheetForInlineStyle::elementStyleText() 1773 const String& InspectorStyleSheetForInlineStyle::elementStyleText()
1774 { 1774 {
1775 return m_element->getAttribute("style").string(); 1775 return m_element->getAttribute("style").getString();
1776 } 1776 }
1777 1777
1778 DEFINE_TRACE(InspectorStyleSheetForInlineStyle) 1778 DEFINE_TRACE(InspectorStyleSheetForInlineStyle)
1779 { 1779 {
1780 visitor->trace(m_element); 1780 visitor->trace(m_element);
1781 visitor->trace(m_inspectorStyle); 1781 visitor->trace(m_inspectorStyle);
1782 InspectorStyleSheetBase::trace(visitor); 1782 InspectorStyleSheetBase::trace(visitor);
1783 } 1783 }
1784 1784
1785 } // namespace blink 1785 } // namespace blink
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698