diff options
Diffstat (limited to 'chrome_frame/chrome_frame_automation.cc')
-rw-r--r-- | chrome_frame/chrome_frame_automation.cc | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/chrome_frame/chrome_frame_automation.cc b/chrome_frame/chrome_frame_automation.cc index 8dbf795..7f4e218 100644 --- a/chrome_frame/chrome_frame_automation.cc +++ b/chrome_frame/chrome_frame_automation.cc @@ -75,6 +75,7 @@ class ChromeFrameAutomationProxyImpl::CFMsgDispatcher case AutomationMsg_ConnectExternalTab::ID: InvokeCallback<Tuple3<HWND, HWND, int> >(msg, origin); break; + case AutomationMsg_NavigateExternalTabAtIndex::ID: case AutomationMsg_NavigateInExternalTab::ID: InvokeCallback<Tuple1<AutomationMsg_NavigationResponseValues> >(msg, origin); @@ -144,7 +145,6 @@ struct LaunchTimeStats { #endif }; - ProxyFactory::ProxyCacheEntry::ProxyCacheEntry(const std::wstring& profile) : proxy(NULL), profile_name(profile), ref_count(1), launch_result(AutomationLaunchResult(-1)) { @@ -885,7 +885,6 @@ void ChromeFrameAutomationClient::SetParentWindow(HWND parent_window) { } if (!SetParent(parent_window)) { - NOTREACHED(); DLOG(WARNING) << "Failed to set parent window for automation window. " << "Error = " << GetLastError(); |