| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "content/shell/shell_web_contents_view_delegate.h" | 5 #include "content/shell/shell_web_contents_view_delegate.h" |
| 6 | 6 |
| 7 #include "content/public/browser/devtools_http_handler.h" | 7 #include "content/public/browser/devtools_http_handler.h" |
| 8 #include "content/public/browser/render_process_host.h" | 8 #include "content/public/browser/render_process_host.h" |
| 9 #include "content/public/browser/render_view_host.h" | 9 #include "content/public/browser/render_view_host.h" |
| 10 #include "content/public/browser/render_widget_host_view.h" | 10 #include "content/public/browser/render_widget_host_view.h" |
| (...skipping 24 matching lines...) Expand all Loading... |
| 35 : web_contents_(web_contents), | 35 : web_contents_(web_contents), |
| 36 floating_(gtk_floating_container_new()) { | 36 floating_(gtk_floating_container_new()) { |
| 37 } | 37 } |
| 38 | 38 |
| 39 ShellWebContentsViewDelegate::~ShellWebContentsViewDelegate() { | 39 ShellWebContentsViewDelegate::~ShellWebContentsViewDelegate() { |
| 40 floating_.Destroy(); | 40 floating_.Destroy(); |
| 41 } | 41 } |
| 42 | 42 |
| 43 void ShellWebContentsViewDelegate::ShowContextMenu( | 43 void ShellWebContentsViewDelegate::ShowContextMenu( |
| 44 const ContextMenuParams& params, | 44 const ContextMenuParams& params, |
| 45 const ContextMenuSourceType& type) { | 45 ContextMenuSourceType type) { |
| 46 GtkWidget* menu = gtk_menu_new(); | 46 GtkWidget* menu = gtk_menu_new(); |
| 47 | 47 |
| 48 params_ = params; | 48 params_ = params; |
| 49 bool has_link = !params_.unfiltered_link_url.is_empty(); | 49 bool has_link = !params_.unfiltered_link_url.is_empty(); |
| 50 bool has_selection = !params_.selection_text.empty(); | 50 bool has_selection = !params_.selection_text.empty(); |
| 51 | 51 |
| 52 if (params_.media_type == WebContextMenuData::MediaTypeNone && | 52 if (params_.media_type == WebContextMenuData::MediaTypeNone && |
| 53 !has_link && | 53 !has_link && |
| 54 !has_selection && | 54 !has_selection && |
| 55 !params_.is_editable) { | 55 !params_.is_editable) { |
| (...skipping 185 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 241 GURL url = delegate->devtools_http_handler()->GetFrontendURL( | 241 GURL url = delegate->devtools_http_handler()->GetFrontendURL( |
| 242 web_contents_->GetRenderViewHost()); | 242 web_contents_->GetRenderViewHost()); |
| 243 Shell::CreateNewWindow(web_contents_->GetBrowserContext(), | 243 Shell::CreateNewWindow(web_contents_->GetBrowserContext(), |
| 244 url, | 244 url, |
| 245 NULL, | 245 NULL, |
| 246 MSG_ROUTING_NONE, | 246 MSG_ROUTING_NONE, |
| 247 NULL); | 247 NULL); |
| 248 } | 248 } |
| 249 | 249 |
| 250 } // namespace content | 250 } // namespace content |
| OLD | NEW |