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

Side by Side Diff: chrome/browser/ui/views/frame/browser_view.h

Issue 1473543002: Implement newly designed sign-in related histograms for desktop platorms. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years 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
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 #ifndef CHROME_BROWSER_UI_VIEWS_FRAME_BROWSER_VIEW_H_ 5 #ifndef CHROME_BROWSER_UI_VIEWS_FRAME_BROWSER_VIEW_H_
6 #define CHROME_BROWSER_UI_VIEWS_FRAME_BROWSER_VIEW_H_ 6 #define CHROME_BROWSER_UI_VIEWS_FRAME_BROWSER_VIEW_H_
7 7
8 #include <map> 8 #include <map>
9 #include <string> 9 #include <string>
10 #include <vector> 10 #include <vector>
(...skipping 345 matching lines...) Expand 10 before | Expand all | Expand 10 after
356 void HandleKeyboardEvent( 356 void HandleKeyboardEvent(
357 const content::NativeWebKeyboardEvent& event) override; 357 const content::NativeWebKeyboardEvent& event) override;
358 void CutCopyPaste(int command_id) override; 358 void CutCopyPaste(int command_id) override;
359 WindowOpenDisposition GetDispositionForPopupBounds( 359 WindowOpenDisposition GetDispositionForPopupBounds(
360 const gfx::Rect& bounds) override; 360 const gfx::Rect& bounds) override;
361 FindBar* CreateFindBar() override; 361 FindBar* CreateFindBar() override;
362 web_modal::WebContentsModalDialogHost* GetWebContentsModalDialogHost() 362 web_modal::WebContentsModalDialogHost* GetWebContentsModalDialogHost()
363 override; 363 override;
364 void ShowAvatarBubbleFromAvatarButton( 364 void ShowAvatarBubbleFromAvatarButton(
365 AvatarBubbleMode mode, 365 AvatarBubbleMode mode,
366 const signin::ManageAccountsParams& manage_accounts_params) override; 366 const signin::ManageAccountsParams& manage_accounts_params,
367 signin_metrics::AccessPoint access_point) override;
367 int GetRenderViewHeightInsetWithDetachedBookmarkBar() override; 368 int GetRenderViewHeightInsetWithDetachedBookmarkBar() override;
368 void ExecuteExtensionCommand(const extensions::Extension* extension, 369 void ExecuteExtensionCommand(const extensions::Extension* extension,
369 const extensions::Command& command) override; 370 const extensions::Command& command) override;
370 ExclusiveAccessContext* GetExclusiveAccessContext() override; 371 ExclusiveAccessContext* GetExclusiveAccessContext() override;
371 372
372 BookmarkBarView* GetBookmarkBarView() const; 373 BookmarkBarView* GetBookmarkBarView() const;
373 LocationBarView* GetLocationBarView() const; 374 LocationBarView* GetLocationBarView() const;
374 views::View* GetTabContentsContainerView() const; 375 views::View* GetTabContentsContainerView() const;
375 ToolbarView* GetToolbarView() const; 376 ToolbarView* GetToolbarView() const;
376 377
(...skipping 327 matching lines...) Expand 10 before | Expand all | Expand 10 after
704 scoped_ptr<ImmersiveModeController> immersive_mode_controller_; 705 scoped_ptr<ImmersiveModeController> immersive_mode_controller_;
705 706
706 scoped_ptr<WebContentsCloseHandler> web_contents_close_handler_; 707 scoped_ptr<WebContentsCloseHandler> web_contents_close_handler_;
707 708
708 mutable base::WeakPtrFactory<BrowserView> activate_modal_dialog_factory_; 709 mutable base::WeakPtrFactory<BrowserView> activate_modal_dialog_factory_;
709 710
710 DISALLOW_COPY_AND_ASSIGN(BrowserView); 711 DISALLOW_COPY_AND_ASSIGN(BrowserView);
711 }; 712 };
712 713
713 #endif // CHROME_BROWSER_UI_VIEWS_FRAME_BROWSER_VIEW_H_ 714 #endif // CHROME_BROWSER_UI_VIEWS_FRAME_BROWSER_VIEW_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698