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

Unified Diff: third_party/WebKit/Source/core/testing/SequenceTest.cpp

Issue 2871933002: bindings: Fix coding style in SequenceTest. (Closed)
Patch Set: Created 3 years, 7 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « third_party/WebKit/Source/core/testing/SequenceTest.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/core/testing/SequenceTest.cpp
diff --git a/third_party/WebKit/Source/core/testing/SequenceTest.cpp b/third_party/WebKit/Source/core/testing/SequenceTest.cpp
index 791644da730c208366ede2174f98f833162506c7..1971041c0b276ab6b28158d5f76a8b681f05d797 100644
--- a/third_party/WebKit/Source/core/testing/SequenceTest.cpp
+++ b/third_party/WebKit/Source/core/testing/SequenceTest.cpp
@@ -36,11 +36,11 @@ Nullable<Vector<uint8_t>> SequenceTest::identityOctetSequenceOrNull(
}
HeapVector<Member<Element>> SequenceTest::getElementSequence() const {
- return m_elementSequence;
+ return element_sequence_;
}
void SequenceTest::setElementSequence(const HeapVector<Member<Element>>& arg) {
- m_elementSequence = arg;
+ element_sequence_ = arg;
}
bool SequenceTest::unionReceivedSequence(const DoubleOrDoubleSequence& arg) {
@@ -48,7 +48,7 @@ bool SequenceTest::unionReceivedSequence(const DoubleOrDoubleSequence& arg) {
}
DEFINE_TRACE(SequenceTest) {
- visitor->Trace(m_elementSequence);
+ visitor->Trace(element_sequence_);
}
} // namespace blink
« no previous file with comments | « third_party/WebKit/Source/core/testing/SequenceTest.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698