OLD | NEW |
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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 "chrome/renderer/render_view.h" | 5 #include "chrome/renderer/render_view.h" |
6 | 6 |
7 #include <algorithm> | 7 #include <algorithm> |
8 #include <string> | 8 #include <string> |
9 #include <vector> | 9 #include <vector> |
10 | 10 |
(...skipping 1515 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1526 Send(new ViewHostMsg_MissingPluginStatus(routing_id_, status)); | 1526 Send(new ViewHostMsg_MissingPluginStatus(routing_id_, status)); |
1527 } | 1527 } |
1528 } else { | 1528 } else { |
1529 // Closes the InfoBar if user clicks on the plugin (instead of the InfoBar) | 1529 // Closes the InfoBar if user clicks on the plugin (instead of the InfoBar) |
1530 // to start the download/install. | 1530 // to start the download/install. |
1531 if (status == default_plugin::MISSING_PLUGIN_USER_STARTED_DOWNLOAD) { | 1531 if (status == default_plugin::MISSING_PLUGIN_USER_STARTED_DOWNLOAD) { |
1532 Send(new ViewHostMsg_MissingPluginStatus(routing_id_, status)); | 1532 Send(new ViewHostMsg_MissingPluginStatus(routing_id_, status)); |
1533 } | 1533 } |
1534 } | 1534 } |
1535 #else | 1535 #else |
1536 // TODO(port): plugins current not supported | 1536 // TODO(port): Implement the infobar that accompanies the default plugin. |
| 1537 // Linux: http://crbug.com/10952 |
| 1538 // Mac: http://crbug.com/17392 |
1537 NOTIMPLEMENTED(); | 1539 NOTIMPLEMENTED(); |
1538 #endif | 1540 #endif |
1539 } | 1541 } |
1540 | 1542 |
1541 // WebKit::WebViewClient ------------------------------------------------------ | 1543 // WebKit::WebViewClient ------------------------------------------------------ |
1542 | 1544 |
1543 WebView* RenderView::createView( | 1545 WebView* RenderView::createView( |
1544 WebFrame* creator, | 1546 WebFrame* creator, |
1545 const WebWindowFeatures& features) { | 1547 const WebWindowFeatures& features) { |
1546 // Check to make sure we aren't overloading on popups. | 1548 // Check to make sure we aren't overloading on popups. |
(...skipping 3415 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
4962 | 4964 |
4963 if (last_top_level_navigation_page_id_ != page_id_ && | 4965 if (last_top_level_navigation_page_id_ != page_id_ && |
4964 // Not interested in reloads. | 4966 // Not interested in reloads. |
4965 type != WebKit::WebNavigationTypeReload && | 4967 type != WebKit::WebNavigationTypeReload && |
4966 type != WebKit::WebNavigationTypeFormSubmitted) { | 4968 type != WebKit::WebNavigationTypeFormSubmitted) { |
4967 return true; | 4969 return true; |
4968 } | 4970 } |
4969 } | 4971 } |
4970 return false; | 4972 return false; |
4971 } | 4973 } |
OLD | NEW |