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

Side by Side Diff: chrome/browser/ui/gtk/browser_titlebar.cc

Issue 12211105: Move remaining non-test, non-Chrome-specific Prefs code to base/prefs/. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Address review comments, merge to LKGR. Created 7 years, 10 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) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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/ui/gtk/browser_titlebar.h" 5 #include "chrome/browser/ui/gtk/browser_titlebar.h"
6 6
7 #include <gdk/gdkkeysyms.h> 7 #include <gdk/gdkkeysyms.h>
8 #include <gtk/gtk.h> 8 #include <gtk/gtk.h>
9 9
10 #include <string> 10 #include <string>
11 #include <vector> 11 #include <vector>
12 12
13 #include "base/command_line.h" 13 #include "base/command_line.h"
14 #include "base/i18n/rtl.h" 14 #include "base/i18n/rtl.h"
15 #include "base/memory/singleton.h" 15 #include "base/memory/singleton.h"
16 #include "base/prefs/pref_service.h"
16 #include "base/string_piece.h" 17 #include "base/string_piece.h"
17 #include "base/strings/string_tokenizer.h" 18 #include "base/strings/string_tokenizer.h"
18 #include "base/utf_string_conversions.h" 19 #include "base/utf_string_conversions.h"
19 #include "chrome/app/chrome_command_ids.h" 20 #include "chrome/app/chrome_command_ids.h"
20 #include "chrome/browser/browser_process.h" 21 #include "chrome/browser/browser_process.h"
21 #include "chrome/browser/managed_mode/managed_mode.h" 22 #include "chrome/browser/managed_mode/managed_mode.h"
22 #include "chrome/browser/prefs/pref_service.h"
23 #include "chrome/browser/profiles/avatar_menu_model.h" 23 #include "chrome/browser/profiles/avatar_menu_model.h"
24 #include "chrome/browser/profiles/profile.h" 24 #include "chrome/browser/profiles/profile.h"
25 #include "chrome/browser/profiles/profile_info_cache.h" 25 #include "chrome/browser/profiles/profile_info_cache.h"
26 #include "chrome/browser/profiles/profile_manager.h" 26 #include "chrome/browser/profiles/profile_manager.h"
27 #include "chrome/browser/ui/browser.h" 27 #include "chrome/browser/ui/browser.h"
28 #include "chrome/browser/ui/browser_commands.h" 28 #include "chrome/browser/ui/browser_commands.h"
29 #include "chrome/browser/ui/gtk/accelerators_gtk.h" 29 #include "chrome/browser/ui/gtk/accelerators_gtk.h"
30 #include "chrome/browser/ui/gtk/avatar_menu_button_gtk.h" 30 #include "chrome/browser/ui/gtk/avatar_menu_button_gtk.h"
31 #include "chrome/browser/ui/gtk/browser_window_gtk.h" 31 #include "chrome/browser/ui/gtk/browser_window_gtk.h"
32 #include "chrome/browser/ui/gtk/custom_button.h" 32 #include "chrome/browser/ui/gtk/custom_button.h"
(...skipping 1000 matching lines...) Expand 10 before | Expand all | Expand 10 after
1033 ui::SimpleMenuModel::Delegate* delegate) 1033 ui::SimpleMenuModel::Delegate* delegate)
1034 : SimpleMenuModel(delegate) { 1034 : SimpleMenuModel(delegate) {
1035 AddItemWithStringId(IDC_NEW_TAB, IDS_TAB_CXMENU_NEWTAB); 1035 AddItemWithStringId(IDC_NEW_TAB, IDS_TAB_CXMENU_NEWTAB);
1036 AddItemWithStringId(IDC_RESTORE_TAB, IDS_RESTORE_TAB); 1036 AddItemWithStringId(IDC_RESTORE_TAB, IDS_RESTORE_TAB);
1037 AddSeparator(ui::NORMAL_SEPARATOR); 1037 AddSeparator(ui::NORMAL_SEPARATOR);
1038 AddItemWithStringId(IDC_TASK_MANAGER, IDS_TASK_MANAGER); 1038 AddItemWithStringId(IDC_TASK_MANAGER, IDS_TASK_MANAGER);
1039 AddSeparator(ui::NORMAL_SEPARATOR); 1039 AddSeparator(ui::NORMAL_SEPARATOR);
1040 AddCheckItemWithStringId(kShowWindowDecorationsCommand, 1040 AddCheckItemWithStringId(kShowWindowDecorationsCommand,
1041 IDS_SHOW_WINDOW_DECORATIONS_MENU); 1041 IDS_SHOW_WINDOW_DECORATIONS_MENU);
1042 } 1042 }
OLDNEW
« no previous file with comments | « chrome/browser/ui/gtk/bookmarks/bookmark_bar_gtk.cc ('k') | chrome/browser/ui/gtk/browser_toolbar_gtk.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698