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): Implement the infobar that accompanies the default plugin. | 1536 // TODO(port): plugins current not supported |
1537 // Linux: http://crbug.com/10952 | |
1538 // Mac: http://crbug.com/17392 | |
1539 NOTIMPLEMENTED(); | 1537 NOTIMPLEMENTED(); |
1540 #endif | 1538 #endif |
1541 } | 1539 } |
1542 | 1540 |
1543 // WebKit::WebViewClient ------------------------------------------------------ | 1541 // WebKit::WebViewClient ------------------------------------------------------ |
1544 | 1542 |
1545 WebView* RenderView::createView( | 1543 WebView* RenderView::createView( |
1546 WebFrame* creator, | 1544 WebFrame* creator, |
1547 const WebWindowFeatures& features) { | 1545 const WebWindowFeatures& features) { |
1548 // Check to make sure we aren't overloading on popups. | 1546 // Check to make sure we aren't overloading on popups. |
(...skipping 3415 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
4964 | 4962 |
4965 if (last_top_level_navigation_page_id_ != page_id_ && | 4963 if (last_top_level_navigation_page_id_ != page_id_ && |
4966 // Not interested in reloads. | 4964 // Not interested in reloads. |
4967 type != WebKit::WebNavigationTypeReload && | 4965 type != WebKit::WebNavigationTypeReload && |
4968 type != WebKit::WebNavigationTypeFormSubmitted) { | 4966 type != WebKit::WebNavigationTypeFormSubmitted) { |
4969 return true; | 4967 return true; |
4970 } | 4968 } |
4971 } | 4969 } |
4972 return false; | 4970 return false; |
4973 } | 4971 } |
OLD | NEW |