Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(534)

Side by Side Diff: chrome/browser/dom_ui/options/language_options_handler.cc

Issue 6265010: DOMUI settings: move/rename the language options panel so that it can be use... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 9 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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
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
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698