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

Unified Diff: third_party/WebKit/Source/core/frame/DOMWindowTimers.cpp

Issue 1444173002: third_party/WebKit: fix typos found in comments (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: CL Description change, Typo patch apply to upstream master. Created 5 years 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
Index: third_party/WebKit/Source/core/frame/DOMWindowTimers.cpp
diff --git a/third_party/WebKit/Source/core/frame/DOMWindowTimers.cpp b/third_party/WebKit/Source/core/frame/DOMWindowTimers.cpp
index 7431a42a3622ecbf65ac2c96da3505e62305b4ec..3531e612cc4b3125b4ea66ae23b1fb93d7f7b16d 100644
--- a/third_party/WebKit/Source/core/frame/DOMWindowTimers.cpp
+++ b/third_party/WebKit/Source/core/frame/DOMWindowTimers.cpp
@@ -86,7 +86,7 @@ int setTimeout(ScriptState* scriptState, EventTarget& eventTarget, const String&
if (!isAllowed(scriptState, executionContext, true))
return 0;
// Don't allow setting timeouts to run empty functions. Was historically a
- // perfomance issue.
+ // performance issue.
if (handler.isEmpty())
return 0;
if (timeout >= 0 && executionContext->isDocument()) {
@@ -113,7 +113,7 @@ int setInterval(ScriptState* scriptState, EventTarget& eventTarget, const String
if (!isAllowed(scriptState, executionContext, true))
return 0;
// Don't allow setting timeouts to run empty functions. Was historically a
- // perfomance issue.
+ // performance issue.
if (handler.isEmpty())
return 0;
OwnPtrWillBeRawPtr<ScheduledAction> action = ScheduledAction::create(scriptState, handler);
« no previous file with comments | « third_party/WebKit/Source/core/events/EventListenerMap.cpp ('k') | third_party/WebKit/Source/core/frame/Frame.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698