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

Unified Diff: Source/web/WebNode.cpp

Issue 18563008: Web MIDI: add assign() and equals() to WebMIDIPermissionRequest (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: for CQ Created 7 years, 5 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 | « Source/web/WebMIDIPermissionRequest.cpp ('k') | Source/web/WebPluginContainerImpl.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/web/WebNode.cpp
diff --git a/Source/web/WebNode.cpp b/Source/web/WebNode.cpp
index 5f5e3466e412d49212aa58ed9b8145dd3fd462cd..9ce1b976448e9ec9b492f5999dc3ff9971ee2c65 100644
--- a/Source/web/WebNode.cpp
+++ b/Source/web/WebNode.cpp
@@ -70,12 +70,12 @@ void WebNode::assign(const WebNode& other)
bool WebNode::equals(const WebNode& n) const
{
- return (m_private.get() == n.m_private.get());
+ return m_private.get() == n.m_private.get();
}
bool WebNode::lessThan(const WebNode& n) const
{
- return (m_private.get() < n.m_private.get());
+ return m_private.get() < n.m_private.get();
}
WebNode::NodeType WebNode::nodeType() const
« no previous file with comments | « Source/web/WebMIDIPermissionRequest.cpp ('k') | Source/web/WebPluginContainerImpl.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698