Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(46)

Unified Diff: chrome_frame/chrome_active_document.cc

Issue 1763011: Fix a chrome frame crasher reported on the crash server. It occurs while proc... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 10 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome_frame/chrome_active_document.cc
===================================================================
--- chrome_frame/chrome_active_document.cc (revision 45252)
+++ chrome_frame/chrome_active_document.cc (working copy)
@@ -397,9 +397,13 @@
}
STDMETHODIMP ChromeActiveDocument::SetPositionCookie(DWORD position_cookie) {
- int index = static_cast<int>(position_cookie);
- navigation_info_.navigation_index = index;
- automation_client_->NavigateToIndex(index);
+ if (automation_client_.get()) {
+ int index = static_cast<int>(position_cookie);
+ navigation_info_.navigation_index = index;
+ automation_client_->NavigateToIndex(index);
+ } else {
+ DLOG(WARNING) << "Invalid automation client instance";
+ }
return S_OK;
}
@@ -810,6 +814,10 @@
void ChromeActiveDocument::OnAttachExternalTab(int tab_handle,
const IPC::AttachExternalTabParams& params) {
+ if (!automation_client_.get()) {
+ DLOG(WARNING) << "Invalid automation client instance";
+ return;
+ }
DWORD flags = 0;
if (params.user_gesture)
flags = NWMF_USERREQUESTED;
@@ -981,6 +989,8 @@
bool ChromeActiveDocument::LaunchUrl(const std::wstring& url,
bool is_new_navigation) {
+ DCHECK(automation_client_.get() != NULL);
+
url_.Allocate(url.c_str());
if (!is_new_navigation) {
@@ -1065,7 +1075,7 @@
VARIANT* in_args,
VARIANT* out_args) {
if (!automation_client_.get()) {
- NOTREACHED() << "Invalid automtion client";
+ NOTREACHED() << "Invalid automation client";
return E_FAIL;
}
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698