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 #include "libcef/browser/chrome/views/chrome_views_util.h" 6 7 #include "libcef/browser/views/view_util.h" 8 9 namespace cef { 10 IsCefView(views::View * view)11bool IsCefView(views::View* view) { 12 return view_util::GetFor(view, /*find_known_parent=*/false) != nullptr; 13 } 14 15 } // namespace cef 16