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

Unified Diff: chrome/browser/intents/register_intent_handler_infobar_delegate.cc

Issue 7461093: Web Intents: Preparatory work. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: pkasting fix 1. Created 9 years, 5 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/intents/register_intent_handler_infobar_delegate.cc
diff --git a/chrome/browser/intents/register_intent_handler_infobar_delegate.cc b/chrome/browser/intents/register_intent_handler_infobar_delegate.cc
new file mode 100644
index 0000000000000000000000000000000000000000..74a5f2024f4615831080e5273fec022920915cd6
--- /dev/null
+++ b/chrome/browser/intents/register_intent_handler_infobar_delegate.cc
@@ -0,0 +1,59 @@
+// Copyright (c) 2011 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/intents/register_intent_handler_infobar_delegate.h"
+
+#include "base/utf_string_conversions.h"
+#include "chrome/common/url_constants.h"
+#include "content/browser/tab_contents/tab_contents.h"
+#include "grit/generated_resources.h"
+#include "ui/base/l10n/l10n_util.h"
+
+RegisterIntentHandlerInfoBarDelegate::RegisterIntentHandlerInfoBarDelegate(
+ TabContents* tab_contents)
+ : ConfirmInfoBarDelegate(tab_contents),
+ tab_contents_(tab_contents) {
+}
+
+InfoBarDelegate::Type
+ RegisterIntentHandlerInfoBarDelegate::GetInfoBarType() const {
+ return PAGE_ACTION_TYPE;
+}
+
+string16 RegisterIntentHandlerInfoBarDelegate::GetMessageText() const {
+ return l10n_util::GetStringFUTF16(IDS_REGISTER_PROTOCOL_HANDLER_CONFIRM,
+ string16(), string16());
+}
+
+int RegisterIntentHandlerInfoBarDelegate::GetButtons() const {
+ return BUTTON_OK | BUTTON_CANCEL;
Peter Kasting 2011/07/26 22:52:12 Nit: You can eliminate this function entirely -- i
James Hawkins 2011/07/26 23:04:56 Done.
+}
+
+string16 RegisterIntentHandlerInfoBarDelegate::GetButtonLabel(
+ InfoBarButton button) const {
+ switch (button) {
+ case BUTTON_OK:
+ return l10n_util::GetStringUTF16(IDS_REGISTER_INTENT_HANDLER_ACCEPT);
+ case BUTTON_CANCEL:
+ return l10n_util::GetStringFUTF16(IDS_REGISTER_INTENT_HANDLER_DENY,
+ string16());
Peter Kasting 2011/07/26 22:52:12 This extra arg shouldn't be here.
James Hawkins 2011/07/26 23:04:56 Done.
+ case BUTTON_NONE:
Peter Kasting 2011/07/26 22:52:12 Getting BUTTON_NONE here is actually illegal. Nit
James Hawkins 2011/07/26 23:04:56 Removed NONE handling by switching to an if/else.
+ break;
+ }
+
+ NOTREACHED();
+ return string16();
+}
+
+string16 RegisterIntentHandlerInfoBarDelegate::GetLinkText() const {
+ return l10n_util::GetStringUTF16(IDS_LEARN_MORE);
+}
+
+bool RegisterIntentHandlerInfoBarDelegate::LinkClicked(
+ WindowOpenDisposition disposition) {
+ // TODO(jhawkins): Open the Web Intents Help Center article once it is
+ // written.
+ // TODO(jhawkins): Add associated bug for the article here.
Peter Kasting 2011/07/26 22:52:12 Nit: What's this mean?
James Hawkins 2011/07/26 23:04:56 I need to file a bug to get the help center articl
+ return false;
+}

Powered by Google App Engine
This is Rietveld 408576698