File tree 5 files changed +45
-7
lines changed
CefSharp.BrowserSubprocess.Core/Wrapper
CefSharp.Core.Runtime/Internals
5 files changed +45
-7
lines changed Original file line number Diff line number Diff line change @@ -220,6 +220,24 @@ List<String^>^ Browser::GetFrameNames()
220
220
return StringUtils::ToClr (names);
221
221
}
222
222
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
+
223
241
bool Browser::IsDisposed::get ()
224
242
{
225
243
return _disposed;
Original file line number Diff line number Diff line change @@ -184,6 +184,8 @@ namespace CefSharp
184
184
/* --cef()--*/
185
185
virtual List<String^>^ GetFrameNames();
186
186
187
+ virtual IReadOnlyCollection<IFrame^>^ GetAllFrames();
188
+
187
189
virtual property bool IsDisposed
188
190
{
189
191
bool get ();
Original file line number Diff line number Diff line change @@ -266,6 +266,24 @@ List<String^>^ CefBrowserWrapper::GetFrameNames()
266
266
return StringUtils::ToClr (names);
267
267
}
268
268
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
+
269
287
MCefRefPtr<CefBrowser> CefBrowserWrapper::Browser::get ()
270
288
{
271
289
return _browser;
Original file line number Diff line number Diff line change @@ -191,6 +191,8 @@ namespace CefSharp
191
191
// /
192
192
/* --cef()--*/
193
193
virtual List<String^>^ GetFrameNames();
194
+
195
+ virtual IReadOnlyCollection<IFrame^>^ GetAllFrames();
194
196
};
195
197
}
196
198
}
Original file line number Diff line number Diff line change @@ -145,12 +145,10 @@ public interface IBrowser : IDisposable
145
145
/// </summary>
146
146
bool IsDisposed { get ; }
147
147
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 ( ) ;
155
153
}
156
154
}
You can’t perform that action at this time.
0 commit comments