OLD | NEW |
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "chrome/browser/chromeos/dom_ui/language_options_handler.h" | 5 // TODO(csilv): This is for the move CL. Changes to make this cross-platform |
| 6 // will come in the followup CL. |
| 7 #if defined(OS_CHROMEOS) |
| 8 |
| 9 #include "chrome/browser/dom_ui/options/language_options_handler.h" |
6 | 10 |
7 #include <map> | 11 #include <map> |
8 #include <set> | 12 #include <set> |
9 #include <string> | 13 #include <string> |
10 #include <utility> | 14 #include <utility> |
11 #include <vector> | 15 #include <vector> |
12 | 16 |
13 #include "app/l10n_util.h" | 17 #include "app/l10n_util.h" |
14 #include "base/basictypes.h" | 18 #include "base/basictypes.h" |
15 #include "base/utf_string_conversions.h" | 19 #include "base/utf_string_conversions.h" |
(...skipping 290 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
306 void LanguageOptionsHandler::SignOutCallback(const ListValue* args) { | 310 void LanguageOptionsHandler::SignOutCallback(const ListValue* args) { |
307 UserMetrics::RecordAction(UserMetricsAction("LanguageOptions_SignOut")); | 311 UserMetrics::RecordAction(UserMetricsAction("LanguageOptions_SignOut")); |
308 | 312 |
309 Browser* browser = Browser::GetBrowserForController( | 313 Browser* browser = Browser::GetBrowserForController( |
310 &dom_ui_->tab_contents()->controller(), NULL); | 314 &dom_ui_->tab_contents()->controller(), NULL); |
311 if (browser) | 315 if (browser) |
312 browser->ExecuteCommand(IDC_EXIT); | 316 browser->ExecuteCommand(IDC_EXIT); |
313 } | 317 } |
314 | 318 |
315 } // namespace chromeos | 319 } // namespace chromeos |
| 320 |
| 321 #endif // OS_CHROMEOS |
| 322 |
OLD | NEW |