mirror of
https://bitbucket.org/chromiumembedded/cef
synced 2024-12-11 17:15:57 +01:00
30 lines
1.0 KiB
C++
30 lines
1.0 KiB
C++
// Copyright (c) 2015 The Chromium Embedded Framework Authors. All rights
|
|
// reserved. Use of this source code is governed by a BSD-style license that
|
|
// can be found in the LICENSE file.
|
|
|
|
#ifndef CEF_LIBCEF_BROWSER_EXTENSIONS_BROWSER_EXTENSIONS_UTIL_H_
|
|
#define CEF_LIBCEF_BROWSER_EXTENSIONS_BROWSER_EXTENSIONS_UTIL_H_
|
|
|
|
#include <vector>
|
|
|
|
namespace content {
|
|
class WebContents;
|
|
}
|
|
|
|
namespace extensions {
|
|
|
|
// Returns the full-page guest WebContents for the specified |owner|, if any.
|
|
content::WebContents* GetFullPageGuestForOwnerContents(
|
|
content::WebContents* owner);
|
|
|
|
// Populates |guests| with all guest WebContents with the specified |owner|.
|
|
void GetAllGuestsForOwnerContents(content::WebContents* owner,
|
|
std::vector<content::WebContents*>* guests);
|
|
|
|
// Returns the WebContents that owns the specified |guest|, if any.
|
|
content::WebContents* GetOwnerForGuestContents(content::WebContents* guest);
|
|
|
|
} // namespace extensions
|
|
|
|
#endif // CEF_LIBCEF_BROWSER_EXTENSIONS_BROWSER_EXTENSIONS_UTIL_H_
|