Index: chrome/renderer/extensions/extension_custom_bindings.cc |
=================================================================== |
--- chrome/renderer/extensions/extension_custom_bindings.cc (revision 138369) |
+++ chrome/renderer/extensions/extension_custom_bindings.cc (working copy) |
@@ -49,9 +49,9 @@ |
std::string view_type_string = *v8::String::Utf8Value(args[1]->ToString()); |
StringToUpperASCII(&view_type_string); |
- // |view_type| == content::VIEW_TYPE_INVALID means getting any type of |
+ // |view_type| == chrome::VIEW_TYPE_INVALID means getting any type of |
// views. |
- content::ViewType view_type = content::VIEW_TYPE_INVALID; |
+ chrome::ViewType view_type = chrome::VIEW_TYPE_INVALID; |
if (view_type_string == chrome::kViewTypeBackgroundPage) { |
view_type = chrome::VIEW_TYPE_EXTENSION_BACKGROUND_PAGE; |
} else if (view_type_string == chrome::kViewTypeInfobar) { |