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

Unified Diff: chrome/browser/pepper_gtalk_message_filter.cc

Issue 9683003: Aura: Show dialog box asking user's permisssion for screen sharing for gtalk (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: patch Created 8 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
« no previous file with comments | « chrome/browser/pepper_gtalk_message_filter.h ('k') | chrome/chrome_browser.gypi » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/pepper_gtalk_message_filter.cc
diff --git a/chrome/browser/pepper_gtalk_message_filter.cc b/chrome/browser/pepper_gtalk_message_filter.cc
new file mode 100644
index 0000000000000000000000000000000000000000..5cf14ebe49a297e294ce7af477917031df30be31
--- /dev/null
+++ b/chrome/browser/pepper_gtalk_message_filter.cc
@@ -0,0 +1,61 @@
+// Copyright (c) 2012 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/pepper_gtalk_message_filter.h"
+
+#include "chrome/browser/simple_message_box.h"
+#include "content/public/browser/browser_thread.h"
+#include "grit/generated_resources.h"
+#include "ppapi/proxy/ppapi_messages.h"
+#include "ppapi/shared_impl/api_id.h"
+#include "ui/base/l10n/l10n_util.h"
+
+#if defined(USE_AURA)
+#include "ash/shell.h"
+#include "ash/shell_window_ids.h"
+#include "ui/aura/window.h"
+#endif
+
+PepperGtalkMessageFilter::PepperGtalkMessageFilter() {
+}
+
+PepperGtalkMessageFilter::~PepperGtalkMessageFilter() {}
+
+void PepperGtalkMessageFilter::OverrideThreadForMessage(
+ const IPC::Message& message,
+ content::BrowserThread::ID* thread) {
+ if (message.type() == PpapiHostMsg_PPBTalk_GetPermission::ID) {
+ *thread = content::BrowserThread::UI;
+ }
+}
+
+bool PepperGtalkMessageFilter::OnMessageReceived(const IPC::Message& msg,
+ bool* message_was_ok) {
+ bool handled = true;
+ IPC_BEGIN_MESSAGE_MAP_EX(PepperGtalkMessageFilter, msg, *message_was_ok)
+ IPC_MESSAGE_HANDLER(PpapiHostMsg_PPBTalk_GetPermission, OnTalkGetPermission)
+ IPC_MESSAGE_UNHANDLED(handled = false)
+ IPC_END_MESSAGE_MAP_EX()
+ return handled;
+}
+
+void PepperGtalkMessageFilter::OnTalkGetPermission(uint32 plugin_dispatcher_id,
+ PP_Resource resource) {
+
+ bool user_response = false;
+#if defined(USE_AURA)
+ string16 title = l10n_util::GetStringUTF16(
+ IDS_GTALK_SCREEN_SHARE_DIALOG_TITLE);
+ string16 message = l10n_util::GetStringUTF16(
+ IDS_GTALK_SCREEN_SHARE_DIALOG_MESSAGE);
+
+ aura::Window* parent = ash::Shell::GetInstance()->GetContainer(
+ ash::internal::kShellWindowId_SystemModalContainer);
+ user_response = browser::ShowYesNoBox(parent, title, message);
+#endif
+ Send(new PpapiMsg_PPBTalk_GetPermissionACK(ppapi::API_ID_PPB_TALK,
+ plugin_dispatcher_id,
+ resource,
+ user_response));
+}
« no previous file with comments | « chrome/browser/pepper_gtalk_message_filter.h ('k') | chrome/chrome_browser.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698