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

Unified Diff: third_party/WebKit/Source/wtf/text/TextEncodingRegistry.cpp

Issue 2467093006: Fix typo in static function name: Codem -> Codec (Closed)
Patch Set: rebased Created 4 years, 1 month 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/wtf/text/TextEncodingRegistry.cpp
diff --git a/third_party/WebKit/Source/wtf/text/TextEncodingRegistry.cpp b/third_party/WebKit/Source/wtf/text/TextEncodingRegistry.cpp
index 4eaa26a6d939427fc660bd76b887ce95d9735deb..78394e484806d4b0e997fd370ae5b5a4e6034eda 100644
--- a/third_party/WebKit/Source/wtf/text/TextEncodingRegistry.cpp
+++ b/third_party/WebKit/Source/wtf/text/TextEncodingRegistry.cpp
@@ -113,7 +113,7 @@ ALWAYS_INLINE unsigned atomicDidExtendTextCodecMaps() {
return acquireLoad(&didExtendTextCodecMaps);
}
-ALWAYS_INLINE void atomicSetDidExtendTextCodemMaps() {
+ALWAYS_INLINE void atomicSetDidExtendTextCodecMaps() {
releaseStore(&didExtendTextCodecMaps, 1);
}
} // namespace
@@ -261,7 +261,7 @@ const char* atomicCanonicalTextEncodingName(const char* name) {
if (atomicDidExtendTextCodecMaps())
return 0;
extendTextCodecMaps();
- atomicSetDidExtendTextCodemMaps();
+ atomicSetDidExtendTextCodecMaps();
return textEncodingNameMap->get(name);
}
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698