Skip to content

Commit d3e7040

Browse files
committed
Add IBrowser.GetAllFrames
1 parent 8d7a169 commit d3e7040

File tree

5 files changed

+45
-7
lines changed

5 files changed

+45
-7
lines changed

CefSharp.BrowserSubprocess.Core/Wrapper/Browser.cpp

+18
Original file line numberDiff line numberDiff line change
@@ -220,6 +220,24 @@ List<String^>^ Browser::GetFrameNames()
220220
return StringUtils::ToClr(names);
221221
}
222222

223+
IReadOnlyCollection<IFrame^>^ Browser::GetAllFrames()
224+
{
225+
std::vector<CefString> identifiers;
226+
_browser->GetFrameIdentifiers(identifiers);
227+
228+
auto results = gcnew List<IFrame^>(static_cast<int>(identifiers.size()));
229+
for (UINT i = 0; i < identifiers.size(); i++)
230+
{
231+
auto frame = _browser->GetFrameByIdentifier(identifiers[i]);
232+
233+
if (frame.get())
234+
{
235+
results->Add(gcnew Frame(frame));
236+
}
237+
}
238+
return results;
239+
}
240+
223241
bool Browser::IsDisposed::get()
224242
{
225243
return _disposed;

CefSharp.BrowserSubprocess.Core/Wrapper/Browser.h

+2
Original file line numberDiff line numberDiff line change
@@ -184,6 +184,8 @@ namespace CefSharp
184184
/*--cef()--*/
185185
virtual List<String^>^ GetFrameNames();
186186

187+
virtual IReadOnlyCollection<IFrame^>^ GetAllFrames();
188+
187189
virtual property bool IsDisposed
188190
{
189191
bool get();

CefSharp.Core.Runtime/Internals/CefBrowserWrapper.cpp

+18
Original file line numberDiff line numberDiff line change
@@ -266,6 +266,24 @@ List<String^>^ CefBrowserWrapper::GetFrameNames()
266266
return StringUtils::ToClr(names);
267267
}
268268

269+
IReadOnlyCollection<IFrame^>^ CefBrowserWrapper::GetAllFrames()
270+
{
271+
std::vector<CefString> identifiers;
272+
_browser->GetFrameIdentifiers(identifiers);
273+
274+
auto results = gcnew List<IFrame^>(static_cast<int>(identifiers.size()));
275+
for (UINT i = 0; i < identifiers.size(); i++)
276+
{
277+
auto frame = _browser->GetFrameByIdentifier(identifiers[i]);
278+
279+
if (frame.get())
280+
{
281+
results->Add(gcnew CefFrameWrapper(frame));
282+
}
283+
}
284+
return results;
285+
}
286+
269287
MCefRefPtr<CefBrowser> CefBrowserWrapper::Browser::get()
270288
{
271289
return _browser;

CefSharp.Core.Runtime/Internals/CefBrowserWrapper.h

+2
Original file line numberDiff line numberDiff line change
@@ -191,6 +191,8 @@ namespace CefSharp
191191
///
192192
/*--cef()--*/
193193
virtual List<String^>^ GetFrameNames();
194+
195+
virtual IReadOnlyCollection<IFrame^>^ GetAllFrames();
194196
};
195197
}
196198
}

CefSharp/IBrowser.cs

+5-7
Original file line numberDiff line numberDiff line change
@@ -145,12 +145,10 @@ public interface IBrowser : IDisposable
145145
/// </summary>
146146
bool IsDisposed { get; }
147147

148-
//
149-
// Send a message to the specified |target_process|. Returns true if the
150-
// message was sent successfully.
151-
//
152-
/*--cef()--*/
153-
//virtual bool SendProcessMessage(CefProcessId target_process,
154-
// CefRefPtr<CefProcessMessage> message) =0;
148+
/// <summary>
149+
/// Gets a collection of all the current frames.
150+
/// </summary>
151+
/// <returns>frames</returns>
152+
IReadOnlyCollection<IFrame> GetAllFrames();
155153
}
156154
}

0 commit comments

Comments
 (0)