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

Unified Diff: chrome/browser/ui/search/other_device_menu.cc

Issue 11009013: NTP5: Starting implementation of a native menu for showing other device sessions. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 3 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/search/other_device_menu.cc
diff --git a/chrome/browser/ui/search/other_device_menu.cc b/chrome/browser/ui/search/other_device_menu.cc
new file mode 100644
index 0000000000000000000000000000000000000000..096b4118b83556b646c7d7b9a3bec9a49c2b3813
--- /dev/null
+++ b/chrome/browser/ui/search/other_device_menu.cc
@@ -0,0 +1,143 @@
+// 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/ui/search/other_device_menu.h"
+
+#include "base/string16.h"
+#include "base/utf_string_conversions.h"
dhollowa 2012/10/01 17:37:38 This should be removed. We'll put the string in r
jeremycho 2012/10/01 22:53:40 Done.
+#include "chrome/browser/ui/browser.h"
+#include "chrome/browser/ui/browser_finder.h"
+#include "chrome/browser/ui/browser_window.h"
+#include "chrome/browser/ui/webui/ntp/foreign_session_handler.h"
+#include "content/public/browser/web_contents.h"
+#include "content/public/browser/web_ui.h"
+#include "chrome/browser/sync/glue/session_model_associator.h"
+#include "ui/base/text/text_elider.h"
+#include "ui/views/controls/menu/menu_model_adapter.h"
+#include "ui/views/controls/menu/menu_runner.h"
+#include "ui/views/widget/widget.h"
+#include "webkit/glue/window_open_disposition.h"
+
+using browser_sync::ForeignSessionHandler;
+using browser_sync::SessionModelAssociator;
+
+// The max width of a menu. Menu text exceeding this will be elided.
+static const int kMaxWidth = 375;
+
+OtherDeviceMenu::OtherDeviceMenu(content::WebUI* web_ui,
+ const std::string& session_id,
+ const gfx::Point& location) :
+ web_ui_(web_ui), session_id_(session_id), location_(location),
+ ALLOW_THIS_IN_INITIALIZER_LIST(menu_model_(this)) {
+ SessionModelAssociator* associator =
+ ForeignSessionHandler::GetModelAssociator(web_ui);
+ std::vector<const SessionWindow*> windows;
+
+ // Populate the menu with the device's tabs, using separators between windows.
+ // TODO(jeremycho): Limit the number of menu items?
dhollowa 2012/10/01 17:37:38 I see browser_sync::kMaxSessionsToShow. Use that?
jeremycho 2012/10/01 22:53:40 A menu should only contain a single session. Adde
+ if (associator && associator->GetForeignSession(session_id, &windows)) {
dhollowa 2012/10/01 17:37:38 Should |associator| ever be NULL here? If not pre
jeremycho 2012/10/01 22:53:40 Yes it can be, e.g. if it hasn't finished syncing.
+ int command_id = 0;
+ bool lastWindowHasTabs = false;
dhollowa 2012/10/01 17:37:38 C++ style is: |last_window_has_tabs|.
jeremycho 2012/10/01 22:53:40 Done.
+ for (std::vector<const SessionWindow*>::const_iterator it =
+ windows.begin(); it != windows.end(); ++it) {
+ if (lastWindowHasTabs)
+ menu_model_.AddSeparator(ui::NORMAL_SEPARATOR);
+ lastWindowHasTabs = false;
+
+ const SessionWindow* window = *it;
+ for (size_t i = 0; i < window->tabs.size(); ++i) {
+ linked_ptr<DictionaryValue> tab_value =
+ linked_ptr<DictionaryValue>(new DictionaryValue());
+ if (ForeignSessionHandler::SessionTabToValue(
+ *window->tabs[i], tab_value.get())) {
+ lastWindowHasTabs = true;
+ tab_value->SetInteger("windowId", window->window_id.id());
+ string16 title;
+ tab_value->GetString("title", &title);
+ title = ui::ElideText(
+ title, gfx::Font(), kMaxWidth, ui::ELIDE_AT_END);
+ menu_model_.AddItem(command_id, title);
+ session_data_[++command_id] = tab_value;
+ // TODO(jeremycho): Use tab_value.GetString("url", &url) to
dhollowa 2012/10/01 17:37:38 Please add a link to associated bug in this TODO.
jeremycho 2012/10/01 22:53:40 Done.
+ // request favicons.
+ }
+ }
+ }
+
+ // Add a "Show all" menu item if there is more than one tab.
+ if (session_data_.size() > 1) {
+ linked_ptr<DictionaryValue> show_all_tab_value =
+ linked_ptr<DictionaryValue>(new DictionaryValue());
+ // kInvalidId signifies that the entire session should be opened.
+ show_all_tab_value->SetInteger(
+ "sessionId",
+ ForeignSessionHandler::kInvalidId);
+ show_all_tab_value->SetInteger(
+ "windowId",
+ ForeignSessionHandler::kInvalidId);
+ menu_model_.AddSeparator(ui::NORMAL_SEPARATOR);
+ // TODO(jeremycho): i18n.
+ menu_model_.AddItem(command_id, UTF8ToUTF16("Show all"));
dhollowa 2012/10/01 17:37:38 Let's do this now. We shouldn't be hard coding st
jeremycho 2012/10/01 22:53:40 Reused the existing string from NTP4's other devic
+ session_data_[++command_id] = show_all_tab_value;
+ }
+ }
+}
+
+OtherDeviceMenu::~OtherDeviceMenu() {
+}
+
+void OtherDeviceMenu::ShowMenu() {
+ content::WebContents* web_contents = web_ui_->GetWebContents();
dhollowa 2012/10/01 17:37:38 Is it possible to get a NULL result back here? I'
jeremycho 2012/10/01 22:53:40 WebContents* shouldn't be NULL, but the others cou
+ Browser* browser = browser::FindBrowserWithWebContents(web_contents);
+ views::Widget* widget = views::Widget::GetWidgetForNativeWindow(
+ browser->window()->GetNativeWindow());
+ views::MenuModelAdapter menu_model_adapter(&menu_model_);
+ menu_runner_.reset(new views::MenuRunner(menu_model_adapter.CreateMenu()));
+
+ if (menu_runner_->RunMenuAt(widget, NULL, gfx::Rect(location_, gfx::Size()),
dhollowa 2012/10/01 17:37:38 Prefer: RunResult result = menu_runner_->RunMenuAt
jeremycho 2012/10/01 22:53:40 We don't expect that necessarily - only if the Men
+ views::MenuItemView::TOPLEFT, 0) ==
+ views::MenuRunner::MENU_DELETED)
+ return;
+}
+
+bool OtherDeviceMenu::IsCommandIdChecked(int command_id) const {
+ return false;
+}
+
+bool OtherDeviceMenu::IsCommandIdEnabled(int command_id) const {
+ return true;
+}
+
+void OtherDeviceMenu::ExecuteCommand(int command_id) {
+ ExecuteCommand(command_id, 0);
+}
+
+// TODO(jeremycho): Figure out why mouse wheel clicks don't trigger this.
+void OtherDeviceMenu::ExecuteCommand(int command_id, int event_flags) {
+ if (session_data_.count(command_id) == 0) {
dhollowa 2012/10/01 17:37:38 Chrome style typically does not mask logic errors
jeremycho 2012/10/01 22:53:40 Done.
+ NOTREACHED() << "Invalid command_id from other device menu.";
+ return;
+ }
+
+ linked_ptr<DictionaryValue> tab_data = session_data_[command_id];
+ // This is not a mistake - sessionId actually refers to the tab id.
+ // See ForeignSessionHandler::SessionTabToValue.
+ int tab_id = ForeignSessionHandler::kInvalidId;
+ tab_data->GetInteger("sessionId", &tab_id);
+
+ int window_id = ForeignSessionHandler::kInvalidId;
+ tab_data->GetInteger("windowId", &window_id);
+
+ WindowOpenDisposition disposition =
+ chrome::DispositionFromEventFlags(event_flags);
+ ForeignSessionHandler::OpenForeignSession(
+ web_ui_, session_id_, window_id, tab_id, disposition);
+ // TODO(jeremycho): Figure out what we want to log.
dhollowa 2012/10/01 17:37:38 If in doubt, log nothing.
jeremycho 2012/10/01 22:53:40 other_sessions.js logs session clicks, so most lik
+}
+
+bool OtherDeviceMenu::GetAcceleratorForCommandId(
+ int command_id,
+ ui::Accelerator* accelerator) {
+ return false;
+}

Powered by Google App Engine
This is Rietveld 408576698