[jumbo] Give two kForcedInvocationDeadline constants unique names

In certain jumbo configurations, the two constants names
kForcedInvocationDeadline could end up in the same translation
unit and then clash. This patch changes the names to
kTextFinderTestTimeout and kIdleSpellcheckTestTimeout.

Cq-Include-Trybots: luci.chromium.try:linux_layout_tests_layout_ng
Change-Id: I76e030b98bead46fa0aff7f3e0ce1f264d754ef9
Reviewed-on: https://chromium-review.googlesource.com/1202064
Commit-Queue: Kent Tamura <tkent@chromium.org>
Reviewed-by: Kent Tamura <tkent@chromium.org>
Cr-Commit-Position: refs/heads/master@{#588441}
diff --git a/third_party/blink/renderer/core/editing/finder/text_finder.cc b/third_party/blink/renderer/core/editing/finder/text_finder.cc
index 4b5c514..1847a69 100644
--- a/third_party/blink/renderer/core/editing/finder/text_finder.cc
+++ b/third_party/blink/renderer/core/editing/finder/text_finder.cc
@@ -68,7 +68,7 @@
 namespace blink {
 
 namespace {
-constexpr TimeDelta kForcedInvocationDeadline = TimeDelta::FromSeconds(10);
+constexpr TimeDelta kTextFinderTestTimeout = TimeDelta::FromSeconds(10);
 }
 
 TextFinder::FindMatch::FindMatch(Range* range, int ordinal)
@@ -888,7 +888,7 @@
   // https://crbug.com/875203
   if (options.run_synchronously_for_testing) {
     ScopeStringMatches(
-        IdleDeadline::Create(CurrentTimeTicks() + kForcedInvocationDeadline,
+        IdleDeadline::Create(CurrentTimeTicks() + kTextFinderTestTimeout,
                              IdleDeadline::CallbackType::kCalledWhenIdle),
         identifier, search_text, options);
   } else {
diff --git a/third_party/blink/renderer/core/editing/spellcheck/idle_spell_check_controller.cc b/third_party/blink/renderer/core/editing/spellcheck/idle_spell_check_controller.cc
index 21c25f5b..0acffa8 100644
--- a/third_party/blink/renderer/core/editing/spellcheck/idle_spell_check_controller.cc
+++ b/third_party/blink/renderer/core/editing/spellcheck/idle_spell_check_controller.cc
@@ -35,7 +35,7 @@
 const int kHotModeRequestTimeoutMS = 200;
 const int kInvalidHandle = -1;
 const int kDummyHandleForForcedInvocation = -2;
-constexpr TimeDelta kForcedInvocationDeadline = TimeDelta::FromSeconds(10);
+constexpr TimeDelta kIdleSpellcheckTestTimeout = TimeDelta::FromSeconds(10);
 
 }  // namespace
 
@@ -233,7 +233,7 @@
     return;
 
   IdleDeadline* deadline =
-      IdleDeadline::Create(CurrentTimeTicks() + kForcedInvocationDeadline,
+      IdleDeadline::Create(CurrentTimeTicks() + kIdleSpellcheckTestTimeout,
                            IdleDeadline::CallbackType::kCalledWhenIdle);
 
   switch (state_) {