Index: extensions/renderer/dispatcher.cc |
diff --git a/extensions/renderer/dispatcher.cc b/extensions/renderer/dispatcher.cc |
index c9aaec457060e951d8c0bae5a1e0731fd5505fc5..38c916b5cc66d31a2d682c66f2f177d327753828 100644 |
--- a/extensions/renderer/dispatcher.cc |
+++ b/extensions/renderer/dispatcher.cc |
@@ -799,10 +799,12 @@ void Dispatcher::UpdateOriginPermissions(const Extension* extension) { |
} |
void Dispatcher::EnableCustomElementWhiteList() { |
- blink::WebCustomElement::addEmbedderCustomElementName("webview"); |
- blink::WebCustomElement::addEmbedderCustomElementName("appview"); |
blink::WebCustomElement::addEmbedderCustomElementName("appplugin"); |
- blink::WebCustomElement::addEmbedderCustomElementName("browserplugin"); |
+ blink::WebCustomElement::addEmbedderCustomElementName("appview"); |
+ blink::WebCustomElement::addEmbedderCustomElementName("extensionoptions"); |
+ blink::WebCustomElement::addEmbedderCustomElementName( |
+ "extensionoptionsplugin"); |
+ blink::WebCustomElement::addEmbedderCustomElementName("webview"); |
not at google - send to devlin
2014/07/08 19:17:26
fady out of curiosity what are the 'plugin' elemen
Fady Samuel
2014/07/08 19:23:57
Doh! I misspoke earlier. WebView has a browserplug
ericzeng
2014/07/08 19:35:26
So I should put that line back in? Perhaps we shou
|
} |
void Dispatcher::UpdateBindings(const std::string& extension_id) { |