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

Unified Diff: third_party/WebKit/Source/core/events/TouchEvent.cpp

Issue 2825703002: Make a use counter name 1 char shorter to avoid line wrapping (Closed)
Patch Set: Created 3 years, 8 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 | « no previous file | third_party/WebKit/Source/core/events/TouchEventTest.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/core/events/TouchEvent.cpp
diff --git a/third_party/WebKit/Source/core/events/TouchEvent.cpp b/third_party/WebKit/Source/core/events/TouchEvent.cpp
index 4b9ff8bb42d6bc55df4836c3dcd439bb911b8e2c..634c0f86983f5fcf80d18dadce6d86112fec581c 100644
--- a/third_party/WebKit/Source/core/events/TouchEvent.cpp
+++ b/third_party/WebKit/Source/core/events/TouchEvent.cpp
@@ -263,7 +263,7 @@ void TouchEvent::preventDefault() {
if (view() && view()->GetFrame()) {
UseCounter::Count(
view()->GetFrame(),
- UseCounter::kUncancellableTouchEventPreventDefaulted);
+ UseCounter::kUncancelableTouchEventPreventDefaulted);
}
if (native_event_ &&
@@ -275,7 +275,7 @@ void TouchEvent::preventDefault() {
UseCounter::Count(
view()->GetFrame(),
UseCounter::
- kUncancellableTouchEventDueToMainThreadResponsivenessPreventDefaulted);
+ kUncancelableTouchEventDueToMainThreadResponsivenessPreventDefaulted);
}
message_source = kInterventionMessageSource;
warning_message =
« no previous file with comments | « no previous file | third_party/WebKit/Source/core/events/TouchEventTest.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698