1 // Copyright 2021 The Chromium Embedded Framework Authors. All rights reserved. 2 // Use of this source code is governed by a BSD-style license that can be found 3 // in the LICENSE file. 4 5 #ifndef CEF_LIBCEF_BROWSER_CHROME_VIEWS_CHROME_VIEWS_H_ 6 #define CEF_LIBCEF_BROWSER_CHROME_VIEWS_CHROME_VIEWS_H_ 7 #pragma once 8 9 namespace views { 10 class View; 11 } 12 13 namespace cef { 14 15 // Returns true if |view| is a CefView. 16 bool IsCefView(views::View* view); 17 18 } // namespace cef 19 20 #endif // CEF_LIBCEF_BROWSER_CHROME_VIEWS_CHROME_VIEWS_H_ 21