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

Side by Side Diff: chrome/browser/ui/views/avatar_menu_button.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/views/avatar_menu_button.h" 5 #include "chrome/browser/ui/views/avatar_menu_button.h"
6 6
7 #include "base/prefs/pref_service.h"
7 #include "chrome/browser/browser_process.h" 8 #include "chrome/browser/browser_process.h"
8 #include "chrome/browser/command_updater.h" 9 #include "chrome/browser/command_updater.h"
9 #include "chrome/browser/managed_mode/managed_mode.h" 10 #include "chrome/browser/managed_mode/managed_mode.h"
10 #include "chrome/browser/prefs/pref_service.h"
11 #include "chrome/browser/profiles/avatar_menu_model.h" 11 #include "chrome/browser/profiles/avatar_menu_model.h"
12 #include "chrome/browser/profiles/profile_info_util.h" 12 #include "chrome/browser/profiles/profile_info_util.h"
13 #include "chrome/browser/profiles/profile_metrics.h" 13 #include "chrome/browser/profiles/profile_metrics.h"
14 #include "chrome/browser/ui/browser.h" 14 #include "chrome/browser/ui/browser.h"
15 #include "chrome/browser/ui/views/avatar_menu_bubble_view.h" 15 #include "chrome/browser/ui/views/avatar_menu_bubble_view.h"
16 #include "chrome/browser/ui/views/frame/browser_view.h" 16 #include "chrome/browser/ui/views/frame/browser_view.h"
17 #include "chrome/common/chrome_notification_types.h" 17 #include "chrome/common/chrome_notification_types.h"
18 #include "chrome/common/pref_names.h" 18 #include "chrome/common/pref_names.h"
19 #include "content/public/browser/notification_service.h" 19 #include "content/public/browser/notification_service.h"
20 #include "ui/gfx/canvas.h" 20 #include "ui/gfx/canvas.h"
(...skipping 138 matching lines...) Expand 10 before | Expand all | Expand 10 after
159 159
160 void AvatarMenuButton::ShowAvatarBubble() { 160 void AvatarMenuButton::ShowAvatarBubble() {
161 gfx::Point origin; 161 gfx::Point origin;
162 views::View::ConvertPointToScreen(this, &origin); 162 views::View::ConvertPointToScreen(this, &origin);
163 gfx::Rect bounds(origin, size()); 163 gfx::Rect bounds(origin, size());
164 AvatarMenuBubbleView::ShowBubble(this, views::BubbleBorder::TOP_LEFT, 164 AvatarMenuBubbleView::ShowBubble(this, views::BubbleBorder::TOP_LEFT,
165 views::BubbleBorder::ALIGN_ARROW_TO_MID_ANCHOR, bounds, browser_); 165 views::BubbleBorder::ALIGN_ARROW_TO_MID_ANCHOR, bounds, browser_);
166 166
167 ProfileMetrics::LogProfileOpenMethod(ProfileMetrics::ICON_AVATAR_BUBBLE); 167 ProfileMetrics::LogProfileOpenMethod(ProfileMetrics::ICON_AVATAR_BUBBLE);
168 } 168 }
OLDNEW
« no previous file with comments | « chrome/browser/ui/views/app_list/app_list_controller_win.cc ('k') | chrome/browser/ui/views/bookmarks/bookmark_bar_view.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698