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

Unified Diff: chrome/browser/ui/views/website_settings/permission_prompt_impl_views.cc

Issue 2748443005: Rename website_settings UI folders to permission_bubble. (Closed)
Patch Set: Rebase. Created 3 years, 9 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/ui/views/website_settings/permission_prompt_impl_views.cc
diff --git a/chrome/browser/ui/views/website_settings/permission_prompt_impl_views.cc b/chrome/browser/ui/views/website_settings/permission_prompt_impl_views.cc
deleted file mode 100644
index cf1117e5a9f99f70c81625dc6db92d1f93fbeb2a..0000000000000000000000000000000000000000
--- a/chrome/browser/ui/views/website_settings/permission_prompt_impl_views.cc
+++ /dev/null
@@ -1,56 +0,0 @@
-// Copyright 2016 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 "base/memory/ptr_util.h"
-#include "chrome/browser/ui/browser.h"
-#include "chrome/browser/ui/browser_finder.h"
-#include "chrome/browser/ui/browser_window.h"
-#include "chrome/browser/ui/views/exclusive_access_bubble_views.h"
-#include "chrome/browser/ui/views/frame/browser_view.h"
-#include "chrome/browser/ui/views/frame/top_container_view.h"
-#include "chrome/browser/ui/views/location_bar/location_bar_view.h"
-#include "chrome/browser/ui/views/location_bar/location_icon_view.h"
-#include "chrome/browser/ui/views/website_settings/permission_prompt_impl.h"
-#include "content/public/browser/web_contents.h"
-#include "ui/gfx/geometry/point.h"
-#include "ui/gfx/geometry/vector2d.h"
-#include "ui/views/controls/image_view.h"
-
-// The Views browser implementation of PermissionPromptImpl's
-// anchor methods. Views browsers have a native View to anchor the bubble to,
-// which these functions provide.
-
-// Left margin for the bubble when anchored to the top of the screen in
-// fullscreen mode.
-const int kFullscreenLeftMargin = 40;
-
-views::View* PermissionPromptImpl::GetAnchorView() {
- if (!browser_->SupportsWindowFeature(Browser::FEATURE_LOCATIONBAR))
- return nullptr; // Fall back to GetAnchorPoint().
-
- BrowserView* browser_view = BrowserView::GetBrowserViewForBrowser(browser_);
- return browser_view->GetLocationBarView()->GetSecurityBubbleAnchorView();
-}
-
-gfx::Point PermissionPromptImpl::GetAnchorPoint() {
- BrowserView* browser_view = BrowserView::GetBrowserViewForBrowser(browser_);
- // Get position in view (taking RTL displays into account).
- int x_within_browser_view =
- browser_view->GetMirroredXInView(kFullscreenLeftMargin);
- // Get position in screen (taking browser view origin into account, which may
- // not be 0,0 if there are multiple displays).
- gfx::Point browser_view_origin = browser_view->GetBoundsInScreen().origin();
- return browser_view_origin + gfx::Vector2d(x_within_browser_view, 0);
-}
-
-views::BubbleBorder::Arrow PermissionPromptImpl::GetAnchorArrow() {
- return views::BubbleBorder::TOP_LEFT;
-}
-
-// static
-std::unique_ptr<PermissionPrompt> PermissionPrompt::Create(
- content::WebContents* web_contents) {
- return base::WrapUnique(new PermissionPromptImpl(
- chrome::FindBrowserWithWebContents(web_contents)));
-}

Powered by Google App Engine
This is Rietveld 408576698