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

Unified Diff: chrome/browser/ui/extensions/blocked_action_bubble_delegate.cc

Issue 2206693002: Improve settings override bubble to indicate policy installed extensions (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Addressed patch 1 code review Created 4 years, 4 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/extensions/blocked_action_bubble_delegate.cc
diff --git a/chrome/browser/ui/extensions/blocked_action_bubble_delegate.cc b/chrome/browser/ui/extensions/blocked_action_bubble_delegate.cc
index be5a1951100177b43a2683a9c80178ca08f3262e..47adf9aee04b023fd1931cfb1d26b58e32c36a19 100644
--- a/chrome/browser/ui/extensions/blocked_action_bubble_delegate.cc
+++ b/chrome/browser/ui/extensions/blocked_action_bubble_delegate.cc
@@ -6,8 +6,10 @@
#include "base/callback_helpers.h"
#include "base/strings/string16.h"
+#include "grit/components_scaled_resources.h"
Devlin 2016/08/22 20:59:41 needed?
catmullings 2016/08/31 00:03:30 Done.
#include "grit/generated_resources.h"
#include "ui/base/l10n/l10n_util.h"
+#include "ui/base/resource/resource_bundle.h"
Devlin 2016/08/22 20:59:41 ditto
catmullings 2016/08/31 00:03:30 Done.
BlockedActionBubbleDelegate::BlockedActionBubbleDelegate(
const base::Callback<void(CloseAction)>& callback,
@@ -62,3 +64,8 @@ void BlockedActionBubbleDelegate::OnBubbleShown() {}
void BlockedActionBubbleDelegate::OnBubbleClosed(CloseAction action) {
base::ResetAndReturn(&callback_).Run(action);
}
+
+std::unique_ptr<ToolbarActionsBarBubbleDelegate::ExtraViewInfo>
+BlockedActionBubbleDelegate::GetExtraViewInfo() {
+ return nullptr;
+}

Powered by Google App Engine
This is Rietveld 408576698