| 203 | } |
| 204 | |
| 205 | int DocumentHost::SetFocusedFrameByIndex(const int frame_index) { |
| 206 | LOG(TRACE) << "Entering DocumentHost::SetFocusedFrameByIndex"; |
| 207 | CComVariant frame_identifier; |
| 208 | frame_identifier.vt = VT_I4; |
| 209 | frame_identifier.lVal = frame_index; |
| 210 | return this->SetFocusedFrameByIdentifier(frame_identifier); |
| 211 | } |
| 212 | |
| 213 | void DocumentHost::SetFocusedFrameToParent() { |
| 214 | LOG(TRACE) << "Entering DocumentHost::SetFocusedFrameToParent"; |
no test coverage detected