| Index: chrome/browser/ui/fullscreen/fullscreen_exit_bubble_type.cc
|
| diff --git a/chrome/browser/ui/fullscreen/fullscreen_exit_bubble_type.cc b/chrome/browser/ui/fullscreen/fullscreen_exit_bubble_type.cc
|
| index 0a107bd3ff87f6972615b67e26e6fb5ff8d1d138..98ffb305ab0d5dd02755430b91658b928e0afefd 100644
|
| --- a/chrome/browser/ui/fullscreen/fullscreen_exit_bubble_type.cc
|
| +++ b/chrome/browser/ui/fullscreen/fullscreen_exit_bubble_type.cc
|
| @@ -6,10 +6,10 @@
|
|
|
| #include "base/strings/utf_string_conversions.h"
|
| #include "chrome/browser/extensions/extension_service.h"
|
| -#include "chrome/common/extensions/extension_set.h"
|
| #include "chrome/common/url_constants.h"
|
| #include "extensions/common/constants.h"
|
| #include "extensions/common/extension.h"
|
| +#include "extensions/common/extension_set.h"
|
| #include "grit/generated_resources.h"
|
| #include "ui/base/l10n/l10n_util.h"
|
|
|
| @@ -20,7 +20,8 @@ string16 GetLabelTextForType(FullscreenExitBubbleType type,
|
| ExtensionService* extension_service) {
|
| string16 host(UTF8ToUTF16(url.host()));
|
| if (extension_service) {
|
| - const ExtensionSet* extensions = extension_service->extensions();
|
| + const extensions::ExtensionSet* extensions =
|
| + extension_service->extensions();
|
| DCHECK(extensions);
|
| const extensions::Extension* extension =
|
| extensions->GetExtensionOrAppByURL(url);
|
|
|