// Copyright 2012 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef CONTENT_PUBLIC_COMMON_STOP_FIND_ACTION_H_ #define CONTENT_PUBLIC_COMMON_STOP_FIND_ACTION_H_ #include "third_party/blink/public/mojom/frame/find_in_page.mojom-shared.h" namespace content { // DEPRECATED - For future usage, use blink::mojom::StopFindAction directly. // The user has completed a find-in-page; this type defines what actions the // renderer should take next. enum StopFindAction { … }; } // namespace content #endif // CONTENT_PUBLIC_COMMON_STOP_FIND_ACTION_H_