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

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: Merge with ToT 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 3e2d98a2f5c7147d0f9c858cb0ba5734337c62b7..0ed0e08a3f531121c871ee8831cfc14c14f09e0b 100644
--- a/content/browser/browser_plugin/browser_plugin_guest.h
+++ b/content/browser/browser_plugin/browser_plugin_guest.h
@@ -334,11 +334,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