| 197 | } |
| 198 | |
| 199 | int DocumentHost::SetFocusedFrameByName(const std::string& frame_name) { |
| 200 | LOG(TRACE) << "Entering DocumentHost::SetFocusedFrameByName"; |
| 201 | CComVariant frame_identifier = StringUtilities::ToWString(frame_name).c_str(); |
| 202 | return this->SetFocusedFrameByIdentifier(frame_identifier); |
| 203 | } |
| 204 | |
| 205 | int DocumentHost::SetFocusedFrameByIndex(const int frame_index) { |
| 206 | LOG(TRACE) << "Entering DocumentHost::SetFocusedFrameByIndex"; |
nothing calls this directly
no test coverage detected