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

Side by Side Diff: chrome/renderer/render_view.cc

Issue 2075006: Mac: First steps for default plugin (Closed) Base URL: http://src.chromium.org/git/chromium.git
Patch Set: rebase Created 10 years, 7 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 unified diff | Download patch
« no previous file with comments | « chrome/plugin/plugin_thread.cc ('k') | webkit/default_plugin/default_plugin.gyp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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 }
OLDNEW
« no previous file with comments | « chrome/plugin/plugin_thread.cc ('k') | webkit/default_plugin/default_plugin.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698