find_in_page_constants.mm 809 B

12345678910111213141516171819202122232425262728
  1. // Copyright 2019 The Chromium Authors. All rights reserved.
  2. // Use of this source code is governed by a BSD-style license that can be
  3. // found in the LICENSE file.
  4. #import "ios/web/find_in_page/find_in_page_constants.h"
  5. #if !defined(__has_feature) || !__has_feature(objc_arc)
  6. #error "This file requires ARC support."
  7. #endif
  8. namespace web {
  9. const char kFindInPageSearch[] = "findInPage.findString";
  10. const char kFindInPagePump[] = "findInPage.pumpSearch";
  11. const char kFindInPageSelectAndScrollToMatch[] =
  12. "findInPage.selectAndScrollToVisibleMatch";
  13. const char kSelectAndScrollResultMatches[] = "matches";
  14. const char kSelectAndScrollResultIndex[] = "index";
  15. const char kSelectAndScrollResultContextString[] = "contextString";
  16. const char kFindInPageStop[] = "findInPage.stop";
  17. } // namespace web