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

Unified Diff: Source/bindings/v8/V8PerIsolateData.h

Issue 23464095: WTF::notFound looks too much like a local variable. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 3 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/bindings/v8/ScriptGCEvent.cpp ('k') | Source/core/accessibility/AccessibilityScrollView.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/bindings/v8/V8PerIsolateData.h
diff --git a/Source/bindings/v8/V8PerIsolateData.h b/Source/bindings/v8/V8PerIsolateData.h
index 82abf36709efc0ead3bb198a74c85bf2c600b87b..00c43d6dc77109a3b7f640663bf7d1bae26bfd20 100644
--- a/Source/bindings/v8/V8PerIsolateData.h
+++ b/Source/bindings/v8/V8PerIsolateData.h
@@ -95,13 +95,13 @@ public:
void registerDOMDataStore(DOMDataStore* domDataStore)
{
- ASSERT(m_domDataList.find(domDataStore) == notFound);
+ ASSERT(m_domDataList.find(domDataStore) == kNotFound);
m_domDataList.append(domDataStore);
}
void unregisterDOMDataStore(DOMDataStore* domDataStore)
{
- ASSERT(m_domDataList.find(domDataStore) != notFound);
+ ASSERT(m_domDataList.find(domDataStore) != kNotFound);
m_domDataList.remove(m_domDataList.find(domDataStore));
}
« no previous file with comments | « Source/bindings/v8/ScriptGCEvent.cpp ('k') | Source/core/accessibility/AccessibilityScrollView.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698