| Index: chrome/browser/dom_ui/personal_options_handler.cc
|
| ===================================================================
|
| --- chrome/browser/dom_ui/personal_options_handler.cc (revision 56591)
|
| +++ chrome/browser/dom_ui/personal_options_handler.cc (working copy)
|
| @@ -13,7 +13,9 @@
|
| #include "base/values.h"
|
| #include "chrome/browser/browser_list.h"
|
| #include "chrome/browser/browser_process.h"
|
| +#include "chrome/browser/dom_ui/options_managed_banner_handler.h"
|
| #include "chrome/browser/options_page_base.h"
|
| +#include "chrome/browser/options_window.h"
|
| #include "chrome/browser/profile.h"
|
| #include "chrome/browser/profile_manager.h"
|
| #include "chrome/browser/sync/profile_sync_service.h"
|
| @@ -110,6 +112,13 @@
|
| #endif
|
| }
|
|
|
| +void PersonalOptionsHandler::Initialize() {
|
| + banner_handler_.reset(
|
| + new OptionsManagedBannerHandler(dom_ui_,
|
| + ASCIIToUTF16("PersonalOptions"),
|
| + OPTIONS_PAGE_CONTENT));
|
| +}
|
| +
|
| void PersonalOptionsHandler::SetSyncStatusUIString(const Value* value) {
|
| DCHECK(dom_ui_);
|
|
|
|
|