| Index: chrome/browser/ui/webui/flags_ui.cc
|
| ===================================================================
|
| --- chrome/browser/ui/webui/flags_ui.cc (revision 116011)
|
| +++ chrome/browser/ui/webui/flags_ui.cc (working copy)
|
| @@ -18,7 +18,7 @@
|
| #include "chrome/browser/ui/webui/chrome_web_ui_data_source.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"
|
| @@ -32,6 +32,8 @@
|
| #include "chrome/browser/chromeos/login/user_manager.h"
|
| #endif
|
|
|
| +using content::WebContents;
|
| +
|
| namespace {
|
|
|
| ChromeWebUIDataSource* CreateFlagsUIHTMLSource() {
|
| @@ -155,7 +157,7 @@
|
| //
|
| ///////////////////////////////////////////////////////////////////////////////
|
|
|
| -FlagsUI::FlagsUI(TabContents* contents) : ChromeWebUI(contents) {
|
| +FlagsUI::FlagsUI(WebContents* contents) : ChromeWebUI(contents) {
|
| AddMessageHandler(new FlagsDOMHandler());
|
|
|
| // Set up the about:flags source.
|
|
|