| OLD | NEW |
| (Empty) | |
| 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. |
| 4 |
| 5 #include "chrome/browser/remoting/setup.h" |
| 6 #include "chrome/browser/remoting/setup_flow.h" |
| 7 |
| 8 //#include "app/l10n_util.h" |
| 9 //#include "base/utf_string_conversions.h" |
| 10 #include "chrome/browser/google_service_auth_error.h" |
| 11 #include "chrome/browser/profile.h" |
| 12 |
| 13 typedef GoogleServiceAuthError AuthError; |
| 14 |
| 15 namespace remoting_setup { |
| 16 |
| 17 void OpenRemotingSetupDialog(Profile* profile) { |
| 18 remoting_setup::SetupFlow::Run(profile->GetOriginalProfile()); |
| 19 } |
| 20 |
| 21 } // namespace sync_ui_util |
| OLD | NEW |