Index: chrome/browser/ui/webui/options2/options_sync_setup_handler.cc |
diff --git a/chrome/browser/ui/webui/options/options_sync_setup_handler.cc b/chrome/browser/ui/webui/options2/options_sync_setup_handler.cc |
similarity index 87% |
rename from chrome/browser/ui/webui/options/options_sync_setup_handler.cc |
rename to chrome/browser/ui/webui/options2/options_sync_setup_handler.cc |
index 85ad94d0fa10ba200a5072138a571a5d367f42b3..f7f6df76002019a7bb9d05ccf7d801000ea15a73 100644 |
--- a/chrome/browser/ui/webui/options/options_sync_setup_handler.cc |
+++ b/chrome/browser/ui/webui/options2/options_sync_setup_handler.cc |
@@ -2,13 +2,15 @@ |
// Use of this source code is governed by a BSD-style license that can be |
// found in the LICENSE file. |
-#include "chrome/browser/ui/webui/options/options_sync_setup_handler.h" |
+#include "chrome/browser/ui/webui/options2/options_sync_setup_handler.h" |
#include "chrome/browser/profiles/profile.h" |
#include "chrome/browser/sync/profile_sync_service.h" |
#include "chrome/browser/sync/profile_sync_service_factory.h" |
#include "content/public/browser/web_ui.h" |
+namespace options2 { |
+ |
OptionsSyncSetupHandler::OptionsSyncSetupHandler( |
ProfileManager* profile_manager) : SyncSetupHandler(profile_manager) { |
} |
@@ -21,3 +23,5 @@ void OptionsSyncSetupHandler::ShowSetupUI() { |
scoped_ptr<Value> page(Value::CreateStringValue("syncSetup")); |
web_ui()->CallJavascriptFunction("OptionsPage.navigateToPage", *page); |
} |
+ |
+} // options2 |