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

Unified Diff: chrome/renderer/extensions/extension_custom_bindings.cc

Issue 10091006: TabContents -> WebContentsImpl, part 15. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 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
Index: chrome/renderer/extensions/extension_custom_bindings.cc
diff --git a/chrome/renderer/extensions/extension_custom_bindings.cc b/chrome/renderer/extensions/extension_custom_bindings.cc
index afb45e0678aff906de8b5c91fecacbb139512547..7b177e1f68703dc5dc8d8c98e2f3cfae5f816675 100644
--- a/chrome/renderer/extensions/extension_custom_bindings.cc
+++ b/chrome/renderer/extensions/extension_custom_bindings.cc
@@ -139,7 +139,7 @@ v8::Handle<v8::Value> ExtensionCustomBindings::GetExtensionViews(
} else if (view_type_string == chrome::kViewTypeNotification) {
view_type = chrome::VIEW_TYPE_NOTIFICATION;
} else if (view_type_string == chrome::kViewTypeTabContents) {
- view_type = content::VIEW_TYPE_TAB_CONTENTS;
+ view_type = content::VIEW_TYPE_WEB_CONTENTS;
} else if (view_type_string == chrome::kViewTypePopup) {
view_type = chrome::VIEW_TYPE_EXTENSION_POPUP;
} else if (view_type_string == chrome::kViewTypeExtensionDialog) {

Powered by Google App Engine
This is Rietveld 408576698