Index: chrome/browser/ui/webui/aura/app_list_ui.cc |
=================================================================== |
--- chrome/browser/ui/webui/aura/app_list_ui.cc (revision 116011) |
+++ chrome/browser/ui/webui/aura/app_list_ui.cc (working copy) |
@@ -14,12 +14,14 @@ |
#include "chrome/common/extensions/extension_constants.h" |
#include "chrome/common/pref_names.h" |
#include "chrome/common/url_constants.h" |
-#include "content/browser/tab_contents/tab_contents.h" |
+#include "content/public/browser/web_contents.h" |
#include "grit/browser_resources.h" |
#include "grit/chromium_strings.h" |
#include "grit/generated_resources.h" |
#include "ui/base/l10n/l10n_util.h" |
+using content::WebContents; |
+ |
namespace { |
static const int kPageIdOffset = 10; |
@@ -115,7 +117,7 @@ |
} // namespace |
-AppListUI::AppListUI(TabContents* contents) |
+AppListUI::AppListUI(WebContents* contents) |
: ChromeWebUI(contents), |
delegate_(NULL) { |
AddMessageHandler(new AppListHandler); |