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

Unified Diff: content/browser/browser_plugin/browser_plugin_guest.h

Issue 140073002: <webview>: navigating to WebStore should fire a loadabort instead of crashing. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Addressed comments Created 6 years, 11 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
Index: content/browser/browser_plugin/browser_plugin_guest.h
diff --git a/content/browser/browser_plugin/browser_plugin_guest.h b/content/browser/browser_plugin/browser_plugin_guest.h
index 84675b572325b4dddf1b045249f7a39399c653e1..9a08aca35f99e3ff83edf5863a792580ae3223c7 100644
--- a/content/browser/browser_plugin/browser_plugin_guest.h
+++ b/content/browser/browser_plugin/browser_plugin_guest.h
@@ -326,11 +326,9 @@ class CONTENT_EXPORT BrowserPluginGuest
// has been attached to a BrowserPlugin. Once the first navigation commits, we
// no longer track this information.
struct NewWindowInfo {
- bool changed;
GURL url;
std::string name;
NewWindowInfo(const GURL& url, const std::string& name) :
- changed(false),
url(url),
name(name) {}
};

Powered by Google App Engine
This is Rietveld 408576698