Commit bef9a565 authored by pritam.nikam's avatar pritam.nikam Committed by Commit bot

[Password Manager] Close the bubble when full screen state gets change.

BUG=425993

Review URL: https://codereview.chromium.org/795053003

Cr-Commit-Position: refs/heads/master@{#309613}
parent 45b09e88
...@@ -9,6 +9,7 @@ ...@@ -9,6 +9,7 @@
#include "base/gtest_prod_util.h" #include "base/gtest_prod_util.h"
#include "base/timer/timer.h" #include "base/timer/timer.h"
#include "chrome/browser/ui/views/frame/immersive_mode_controller.h" #include "chrome/browser/ui/views/frame/immersive_mode_controller.h"
#include "chrome/browser/ui/views/managed_full_screen_bubble_delegate_view.h"
#include "content/public/browser/notification_observer.h" #include "content/public/browser/notification_observer.h"
#include "content/public/browser/notification_registrar.h" #include "content/public/browser/notification_registrar.h"
#include "extensions/browser/extension_icon_image.h" #include "extensions/browser/extension_icon_image.h"
...@@ -29,9 +30,8 @@ class ImageButton; ...@@ -29,9 +30,8 @@ class ImageButton;
} // namespace views } // namespace views
// View used to display the zoom percentage when it has changed. // View used to display the zoom percentage when it has changed.
class ZoomBubbleView : public views::BubbleDelegateView, class ZoomBubbleView : public ManagedFullScreenBubbleDelegateView,
public views::ButtonListener, public views::ButtonListener,
public content::NotificationObserver,
public ImmersiveModeController::Observer, public ImmersiveModeController::Observer,
public extensions::IconImage::Observer { public extensions::IconImage::Observer {
public: public:
...@@ -79,18 +79,28 @@ class ZoomBubbleView : public views::BubbleDelegateView, ...@@ -79,18 +79,28 @@ class ZoomBubbleView : public views::BubbleDelegateView,
FullscreenController* fullscreen_controller); FullscreenController* fullscreen_controller);
~ZoomBubbleView() override; ~ZoomBubbleView() override;
// If the bubble is not anchored to a view, places the bubble in the top // ManagedFullScreenBubbleDelegateView:
// right (left in RTL) of the |screen_bounds| that contain |web_contents_|'s void OnGestureEvent(ui::GestureEvent* event) override;
// browser window. Because the positioning is based on the size of the void OnMouseEntered(const ui::MouseEvent& event) override;
// bubble, this must be called after the bubble is created. void OnMouseExited(const ui::MouseEvent& event) override;
void AdjustForFullscreen(const gfx::Rect& screen_bounds); void Init() override;
void WindowClosing() override;
void Close() override;
// views::ButtonListener:
void ButtonPressed(views::Button* sender, const ui::Event& event) override;
// ImmersiveModeController::Observer:
void OnImmersiveRevealStarted() override;
void OnImmersiveModeControllerDestroyed() override;
// extensions::IconImage::Observer:
void OnExtensionIconImageChanged(extensions::IconImage* /* image */) override;
// Refreshes the bubble by changing the zoom percentage appropriately and // Refreshes the bubble by changing the zoom percentage appropriately and
// resetting the timer if necessary. // resetting the timer if necessary.
void Refresh(); void Refresh();
void Close();
// Sets information about the extension that initiated the zoom change. // Sets information about the extension that initiated the zoom change.
// Calling this method asserts that the extension |extension| did initiate // Calling this method asserts that the extension |extension| did initiate
// the zoom change. // the zoom change.
...@@ -102,32 +112,6 @@ class ZoomBubbleView : public views::BubbleDelegateView, ...@@ -102,32 +112,6 @@ class ZoomBubbleView : public views::BubbleDelegateView,
// Stops the auto-close timer. // Stops the auto-close timer.
void StopTimer(); void StopTimer();
// extensions::IconImage::Observer overrides:
void OnExtensionIconImageChanged(extensions::IconImage* /* image */) override;
// views::View methods.
void OnMouseEntered(const ui::MouseEvent& event) override;
void OnMouseExited(const ui::MouseEvent& event) override;
// ui::EventHandler method.
void OnGestureEvent(ui::GestureEvent* event) override;
// views::ButtonListener method.
void ButtonPressed(views::Button* sender, const ui::Event& event) override;
// views::BubbleDelegateView method.
void Init() override;
void WindowClosing() override;
// content::NotificationObserver method.
void Observe(int type,
const content::NotificationSource& source,
const content::NotificationDetails& details) override;
// ImmersiveModeController::Observer methods.
void OnImmersiveRevealStarted() override;
void OnImmersiveModeControllerDestroyed() override;
ZoomBubbleExtensionInfo extension_info_; ZoomBubbleExtensionInfo extension_info_;
// Singleton instance of the zoom bubble. The zoom bubble can only be shown on // Singleton instance of the zoom bubble. The zoom bubble can only be shown on
...@@ -157,9 +141,6 @@ class ZoomBubbleView : public views::BubbleDelegateView, ...@@ -157,9 +141,6 @@ class ZoomBubbleView : public views::BubbleDelegateView,
// Not owned. // Not owned.
ImmersiveModeController* immersive_mode_controller_; ImmersiveModeController* immersive_mode_controller_;
// Used to register for fullscreen change notifications.
content::NotificationRegistrar registrar_;
DISALLOW_COPY_AND_ASSIGN(ZoomBubbleView); DISALLOW_COPY_AND_ASSIGN(ZoomBubbleView);
}; };
......
// Copyright 2014 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "chrome/browser/ui/views/managed_full_screen_bubble_delegate_view.h"
#include "chrome/browser/chrome_notification_types.h"
#include "chrome/browser/ui/browser.h"
#include "chrome/browser/ui/browser_finder.h"
#include "chrome/browser/ui/exclusive_access/fullscreen_controller.h"
#include "content/public/browser/notification_source.h"
#include "ui/gfx/geometry/rect.h"
ManagedFullScreenBubbleDelegateView::ManagedFullScreenBubbleDelegateView(
views::View* anchor_view,
content::WebContents* web_contents)
: BubbleDelegateView(
anchor_view,
anchor_view ?
views::BubbleBorder::TOP_RIGHT : views::BubbleBorder::NONE) {
// Add observer to close the bubble if the fullscreen state changes.
if (web_contents) {
Browser* browser = chrome::FindBrowserWithWebContents(web_contents);
registrar_.Add(this, chrome::NOTIFICATION_FULLSCREEN_CHANGED,
content::Source<FullscreenController>(
browser->fullscreen_controller()));
}
}
ManagedFullScreenBubbleDelegateView::~ManagedFullScreenBubbleDelegateView() {
}
void ManagedFullScreenBubbleDelegateView::Observe(
int type,
const content::NotificationSource& source,
const content::NotificationDetails& details) {
DCHECK_EQ(chrome::NOTIFICATION_FULLSCREEN_CHANGED, type);
GetWidget()->SetVisibilityAnimationTransition(views::Widget::ANIMATE_NONE);
Close();
}
void ManagedFullScreenBubbleDelegateView::Close() {
GetWidget()->Close();
}
void ManagedFullScreenBubbleDelegateView::AdjustForFullscreen(
const gfx::Rect& screen_bounds) {
if (GetAnchorView())
return;
const int kBubblePaddingFromScreenEdge = 20;
int bubble_half_width = width() / 2;
const int x_pos = base::i18n::IsRTL() ?
(screen_bounds.x() + bubble_half_width + kBubblePaddingFromScreenEdge) :
(screen_bounds.right() - bubble_half_width -
kBubblePaddingFromScreenEdge);
SetAnchorRect(gfx::Rect(x_pos, screen_bounds.y(), 0, 0));
}
// Copyright 2014 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef CHROME_BROWSER_UI_VIEWS_MANAGED_FULL_SCREEN_BUBBLE_DELEGATE_VIEW_H_
#define CHROME_BROWSER_UI_VIEWS_MANAGED_FULL_SCREEN_BUBBLE_DELEGATE_VIEW_H_
#include "content/public/browser/notification_observer.h"
#include "content/public/browser/notification_registrar.h"
#include "ui/views/bubble/bubble_delegate.h"
namespace content {
class NotificationDetails;
class NotificationSource;
class WebContents;
};
// View used to automatically close a bubble when the browser transitions in or
// out of fullscreen mode.
class ManagedFullScreenBubbleDelegateView
: public views::BubbleDelegateView,
public content::NotificationObserver {
public:
ManagedFullScreenBubbleDelegateView(views::View* anchor_view,
content::WebContents* web_contents);
~ManagedFullScreenBubbleDelegateView() override;
// content::NotificationObserver:
void Observe(int type,
const content::NotificationSource& source,
const content::NotificationDetails& details) override;
protected:
// Closes the bubble.
virtual void Close();
// If the bubble is not anchored to a view, places the bubble in the top right
// (left in RTL) of the |screen_bounds| that contain web contents's browser
// window. Because the positioning is based on the size of the bubble, this
// must be called after the bubble is created.
void AdjustForFullscreen(const gfx::Rect& screen_bounds);
private:
// Used to register for fullscreen change notifications.
content::NotificationRegistrar registrar_;
DISALLOW_COPY_AND_ASSIGN(ManagedFullScreenBubbleDelegateView);
};
#endif // CHROME_BROWSER_UI_VIEWS_MANAGED_FULL_SCREEN_BUBBLE_DELEGATE_VIEW_H_
...@@ -4,21 +4,18 @@ ...@@ -4,21 +4,18 @@
#include "chrome/browser/ui/views/passwords/manage_passwords_bubble_view.h" #include "chrome/browser/ui/views/passwords/manage_passwords_bubble_view.h"
#include "chrome/browser/chrome_notification_types.h"
#include "chrome/browser/ui/browser.h" #include "chrome/browser/ui/browser.h"
#include "chrome/browser/ui/browser_finder.h" #include "chrome/browser/ui/browser_finder.h"
#include "chrome/browser/ui/exclusive_access/fullscreen_controller.h" #include "chrome/browser/ui/exclusive_access/fullscreen_controller.h"
#include "chrome/browser/ui/passwords/manage_passwords_bubble_model.h" #include "chrome/browser/ui/passwords/manage_passwords_bubble_model.h"
#include "chrome/browser/ui/passwords/manage_passwords_ui_controller.h"
#include "chrome/browser/ui/passwords/save_password_refusal_combobox_model.h" #include "chrome/browser/ui/passwords/save_password_refusal_combobox_model.h"
#include "chrome/browser/ui/views/frame/browser_view.h" #include "chrome/browser/ui/views/frame/browser_view.h"
#include "chrome/browser/ui/views/location_bar/location_bar_view.h"
#include "chrome/browser/ui/views/passwords/credentials_item_view.h" #include "chrome/browser/ui/views/passwords/credentials_item_view.h"
#include "chrome/browser/ui/views/passwords/manage_password_items_view.h" #include "chrome/browser/ui/views/passwords/manage_password_items_view.h"
#include "chrome/browser/ui/views/passwords/manage_passwords_icon_view.h" #include "chrome/browser/ui/views/passwords/manage_passwords_icon_view.h"
#include "chrome/grit/generated_resources.h" #include "chrome/grit/generated_resources.h"
#include "content/public/browser/notification_source.h"
#include "content/public/browser/render_view_host.h" #include "content/public/browser/render_view_host.h"
#include "content/public/browser/web_contents.h"
#include "ui/base/l10n/l10n_util.h" #include "ui/base/l10n/l10n_util.h"
#include "ui/base/resource/resource_bundle.h" #include "ui/base/resource/resource_bundle.h"
#include "ui/views/controls/button/blue_button.h" #include "ui/views/controls/button/blue_button.h"
...@@ -989,9 +986,7 @@ ManagePasswordsBubbleView::ManagePasswordsBubbleView( ...@@ -989,9 +986,7 @@ ManagePasswordsBubbleView::ManagePasswordsBubbleView(
ManagePasswordsIconView* anchor_view, ManagePasswordsIconView* anchor_view,
DisplayReason reason) DisplayReason reason)
: ManagePasswordsBubble(web_contents, reason), : ManagePasswordsBubble(web_contents, reason),
BubbleDelegateView(anchor_view, ManagedFullScreenBubbleDelegateView(anchor_view, web_contents),
anchor_view ? views::BubbleBorder::TOP_RIGHT
: views::BubbleBorder::NONE),
anchor_view_(anchor_view), anchor_view_(anchor_view),
initially_focused_view_(NULL) { initially_focused_view_(NULL) {
// Compensate for built-in vertical padding in the anchor view's image. // Compensate for built-in vertical padding in the anchor view's image.
...@@ -999,13 +994,6 @@ ManagePasswordsBubbleView::ManagePasswordsBubbleView( ...@@ -999,13 +994,6 @@ ManagePasswordsBubbleView::ManagePasswordsBubbleView(
if (anchor_view) if (anchor_view)
anchor_view->SetActive(true); anchor_view->SetActive(true);
mouse_handler_.reset(new WebContentMouseHandler(this)); mouse_handler_.reset(new WebContentMouseHandler(this));
// Add observers to close the bubble if the fullscreen state changes.
Browser* browser = chrome::FindBrowserWithWebContents(web_contents);
registrar_.Add(
this,
chrome::NOTIFICATION_FULLSCREEN_CHANGED,
content::Source<FullscreenController>(browser->fullscreen_controller()));
} }
ManagePasswordsBubbleView::~ManagePasswordsBubbleView() { ManagePasswordsBubbleView::~ManagePasswordsBubbleView() {
...@@ -1013,23 +1001,27 @@ ManagePasswordsBubbleView::~ManagePasswordsBubbleView() { ...@@ -1013,23 +1001,27 @@ ManagePasswordsBubbleView::~ManagePasswordsBubbleView() {
anchor_view_->SetActive(false); anchor_view_->SetActive(false);
} }
void ManagePasswordsBubbleView::AdjustForFullscreen( views::View* ManagePasswordsBubbleView::GetInitiallyFocusedView() {
const gfx::Rect& screen_bounds) { return initially_focused_view_;
if (GetAnchorView()) }
return;
void ManagePasswordsBubbleView::Init() {
views::FillLayout* layout = new views::FillLayout();
SetLayoutManager(layout);
Refresh();
}
// The bubble's padding from the screen edge, used in fullscreen. void ManagePasswordsBubbleView::WindowClosing() {
const int kFullscreenPaddingEnd = 20; // Close() closes the window asynchronously, so by the time we reach here,
const size_t bubble_half_width = width() / 2; // |manage_passwords_bubble_| may have already been reset.
const int x_pos = base::i18n::IsRTL() ? if (manage_passwords_bubble_ == this)
screen_bounds.x() + bubble_half_width + kFullscreenPaddingEnd : manage_passwords_bubble_ = NULL;
screen_bounds.right() - bubble_half_width - kFullscreenPaddingEnd;
SetAnchorRect(gfx::Rect(x_pos, screen_bounds.y(), 0, 0));
} }
void ManagePasswordsBubbleView::Close() { void ManagePasswordsBubbleView::Close() {
mouse_handler_.reset(); mouse_handler_.reset();
GetWidget()->Close(); ManagedFullScreenBubbleDelegateView::Close();
} }
void ManagePasswordsBubbleView::Refresh() { void ManagePasswordsBubbleView::Refresh() {
...@@ -1061,16 +1053,6 @@ void ManagePasswordsBubbleView::Refresh() { ...@@ -1061,16 +1053,6 @@ void ManagePasswordsBubbleView::Refresh() {
SizeToContents(); SizeToContents();
} }
void ManagePasswordsBubbleView::NotifyNeverForThisSiteClicked() {
if (model()->best_matches().empty()) {
// Skip confirmation if there are no existing passwords for this site.
NotifyConfirmedNeverForThisSite();
} else {
model()->OnConfirmationForNeverForThisSite();
Refresh();
}
}
void ManagePasswordsBubbleView::NotifyConfirmedNeverForThisSite() { void ManagePasswordsBubbleView::NotifyConfirmedNeverForThisSite() {
model()->OnNeverForThisSiteClicked(); model()->OnNeverForThisSiteClicked();
Close(); Close();
...@@ -1081,29 +1063,12 @@ void ManagePasswordsBubbleView::NotifyUndoNeverForThisSite() { ...@@ -1081,29 +1063,12 @@ void ManagePasswordsBubbleView::NotifyUndoNeverForThisSite() {
Refresh(); Refresh();
} }
void ManagePasswordsBubbleView::Init() { void ManagePasswordsBubbleView::NotifyNeverForThisSiteClicked() {
views::FillLayout* layout = new views::FillLayout(); if (model()->best_matches().empty()) {
SetLayoutManager(layout); // Skip confirmation if there are no existing passwords for this site.
NotifyConfirmedNeverForThisSite();
Refresh(); } else {
} model()->OnConfirmationForNeverForThisSite();
Refresh();
void ManagePasswordsBubbleView::WindowClosing() { }
// Close() closes the window asynchronously, so by the time we reach here,
// |manage_passwords_bubble_| may have already been reset.
if (manage_passwords_bubble_ == this)
manage_passwords_bubble_ = NULL;
}
views::View* ManagePasswordsBubbleView::GetInitiallyFocusedView() {
return initially_focused_view_;
}
void ManagePasswordsBubbleView::Observe(
int type,
const content::NotificationSource& source,
const content::NotificationDetails& details) {
DCHECK_EQ(type, chrome::NOTIFICATION_FULLSCREEN_CHANGED);
GetWidget()->SetVisibilityAnimationTransition(views::Widget::ANIMATE_NONE);
CloseBubble();
} }
...@@ -6,9 +6,7 @@ ...@@ -6,9 +6,7 @@
#define CHROME_BROWSER_UI_VIEWS_PASSWORDS_MANAGE_PASSWORDS_BUBBLE_VIEW_H_ #define CHROME_BROWSER_UI_VIEWS_PASSWORDS_MANAGE_PASSWORDS_BUBBLE_VIEW_H_
#include "chrome/browser/ui/passwords/manage_passwords_bubble.h" #include "chrome/browser/ui/passwords/manage_passwords_bubble.h"
#include "content/public/browser/notification_observer.h" #include "chrome/browser/ui/views/managed_full_screen_bubble_delegate_view.h"
#include "content/public/browser/notification_registrar.h"
#include "ui/views/bubble/bubble_delegate.h"
class ManagePasswordsIconView; class ManagePasswordsIconView;
...@@ -25,8 +23,7 @@ class WebContents; ...@@ -25,8 +23,7 @@ class WebContents;
// 3. BlacklistedView: Informs the user that the current page is blacklisted. // 3. BlacklistedView: Informs the user that the current page is blacklisted.
// //
class ManagePasswordsBubbleView : public ManagePasswordsBubble, class ManagePasswordsBubbleView : public ManagePasswordsBubble,
public views::BubbleDelegateView, public ManagedFullScreenBubbleDelegateView {
public content::NotificationObserver {
public: public:
// Shows the bubble. // Shows the bubble.
static void ShowBubble(content::WebContents* web_contents, static void ShowBubble(content::WebContents* web_contents,
...@@ -61,20 +58,18 @@ class ManagePasswordsBubbleView : public ManagePasswordsBubble, ...@@ -61,20 +58,18 @@ class ManagePasswordsBubbleView : public ManagePasswordsBubble,
class PendingView; class PendingView;
class SaveConfirmationView; class SaveConfirmationView;
class SetupOSPasswordView; class SetupOSPasswordView;
class WebContentMouseHandler;
ManagePasswordsBubbleView(content::WebContents* web_contents, ManagePasswordsBubbleView(content::WebContents* web_contents,
ManagePasswordsIconView* anchor_view, ManagePasswordsIconView* anchor_view,
DisplayReason reason); DisplayReason reason);
~ManagePasswordsBubbleView() override; ~ManagePasswordsBubbleView() override;
// If the bubble is not anchored to a view, places the bubble in the top // ManagedFullScreenBubbleDelegateView:
// right (left in RTL) of the |screen_bounds| that contain |web_contents_|'s views::View* GetInitiallyFocusedView() override;
// browser window. Because the positioning is based on the size of the void Init() override;
// bubble, this must be called after the bubble is created. void WindowClosing() override;
void AdjustForFullscreen(const gfx::Rect& screen_bounds); void Close() override;
// Close the bubble.
void Close();
// Refreshes the bubble's state: called to display a confirmation screen after // Refreshes the bubble's state: called to display a confirmation screen after
// a user selects "Never for this site", for instance. // a user selects "Never for this site", for instance.
...@@ -92,18 +87,6 @@ class ManagePasswordsBubbleView : public ManagePasswordsBubble, ...@@ -92,18 +87,6 @@ class ManagePasswordsBubbleView : public ManagePasswordsBubble,
// undo the action and refresh to PendingView. // undo the action and refresh to PendingView.
void NotifyUndoNeverForThisSite(); void NotifyUndoNeverForThisSite();
// views::BubbleDelegateView:
void Init() override;
void WindowClosing() override;
// views::WidgetDelegate:
views::View* GetInitiallyFocusedView() override;
// content::NotificationObserver:
void Observe(int type,
const content::NotificationSource& source,
const content::NotificationDetails& details) override;
void set_initially_focused_view(views::View* view) { void set_initially_focused_view(views::View* view) {
DCHECK(!initially_focused_view_); DCHECK(!initially_focused_view_);
initially_focused_view_ = view; initially_focused_view_ = view;
...@@ -120,12 +103,8 @@ class ManagePasswordsBubbleView : public ManagePasswordsBubble, ...@@ -120,12 +103,8 @@ class ManagePasswordsBubbleView : public ManagePasswordsBubble,
views::View* initially_focused_view_; views::View* initially_focused_view_;
// A helper to intercept mouse click events on the web contents. // A helper to intercept mouse click events on the web contents.
class WebContentMouseHandler;
scoped_ptr<WebContentMouseHandler> mouse_handler_; scoped_ptr<WebContentMouseHandler> mouse_handler_;
// Used to register for fullscreen change notifications.
content::NotificationRegistrar registrar_;
DISALLOW_COPY_AND_ASSIGN(ManagePasswordsBubbleView); DISALLOW_COPY_AND_ASSIGN(ManagePasswordsBubbleView);
}; };
......
...@@ -258,7 +258,7 @@ TranslateBubbleView::TranslateBubbleView( ...@@ -258,7 +258,7 @@ TranslateBubbleView::TranslateBubbleView(
scoped_ptr<TranslateBubbleModel> model, scoped_ptr<TranslateBubbleModel> model,
translate::TranslateErrors::Type error_type, translate::TranslateErrors::Type error_type,
content::WebContents* web_contents) content::WebContents* web_contents)
: BubbleDelegateView(anchor_view, views::BubbleBorder::TOP_RIGHT), : ManagedFullScreenBubbleDelegateView(anchor_view, web_contents),
WebContentsObserver(web_contents), WebContentsObserver(web_contents),
before_translate_view_(NULL), before_translate_view_(NULL),
translating_view_(NULL), translating_view_(NULL),
......
...@@ -12,9 +12,9 @@ ...@@ -12,9 +12,9 @@
#include "chrome/browser/translate/chrome_translate_client.h" #include "chrome/browser/translate/chrome_translate_client.h"
#include "chrome/browser/ui/translate/language_combobox_model.h" #include "chrome/browser/ui/translate/language_combobox_model.h"
#include "chrome/browser/ui/translate/translate_bubble_model.h" #include "chrome/browser/ui/translate/translate_bubble_model.h"
#include "chrome/browser/ui/views/managed_full_screen_bubble_delegate_view.h"
#include "components/translate/core/common/translate_errors.h" #include "components/translate/core/common/translate_errors.h"
#include "content/public/browser/web_contents_observer.h" #include "content/public/browser/web_contents_observer.h"
#include "ui/views/bubble/bubble_delegate.h"
#include "ui/views/controls/button/button.h" #include "ui/views/controls/button/button.h"
#include "ui/views/controls/combobox/combobox_listener.h" #include "ui/views/controls/combobox/combobox_listener.h"
#include "ui/views/controls/link_listener.h" #include "ui/views/controls/link_listener.h"
...@@ -33,7 +33,7 @@ namespace ui { ...@@ -33,7 +33,7 @@ namespace ui {
class SimpleComboboxModel; class SimpleComboboxModel;
} }
class TranslateBubbleView : public views::BubbleDelegateView, class TranslateBubbleView : public ManagedFullScreenBubbleDelegateView,
public views::ButtonListener, public views::ButtonListener,
public views::ComboboxListener, public views::ComboboxListener,
public views::LinkListener, public views::LinkListener,
......
...@@ -2210,6 +2210,8 @@ ...@@ -2210,6 +2210,8 @@
'browser/ui/views/login_prompt_views.cc', 'browser/ui/views/login_prompt_views.cc',
'browser/ui/views/login_view.cc', 'browser/ui/views/login_view.cc',
'browser/ui/views/login_view.h', 'browser/ui/views/login_view.h',
'browser/ui/views/managed_full_screen_bubble_delegate_view.cc',
'browser/ui/views/managed_full_screen_bubble_delegate_view.h',
'browser/ui/views/omnibox/omnibox_popup_contents_view.cc', 'browser/ui/views/omnibox/omnibox_popup_contents_view.cc',
'browser/ui/views/omnibox/omnibox_popup_contents_view.h', 'browser/ui/views/omnibox/omnibox_popup_contents_view.h',
'browser/ui/views/omnibox/omnibox_result_view.cc', 'browser/ui/views/omnibox/omnibox_result_view.cc',
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment