|
Browser Plugin: Reload and Stop operations
Fairly simple change. Just a whole lot of plumbing to call the following:
void BrowserPluginGuest::Stop() {
web_contents()->Stop();
}
void BrowserPluginGuest::Reload() {
web_contents()->GetController().Reload(false);
}
This includes the parsing the methods in browser_plugin_bindings.cc, the IPCs in browser_plugin.cc, the plumbing to the embedder and from the embedder to the appropriate guest.
This also includes tests to verify that these two operations do indeed get plumbed correctly.
BUG= 148981
Committed: https://src.chromium.org/viewvc/chrome?view=rev&revision=157988
Total comments: 18
Total comments: 4
Total comments: 14
Total comments: 1
|
Unified diffs |
Side-by-side diffs |
Delta from patch set |
Stats (+251 lines, -0 lines) |
Patch |
 |
M |
content/browser/browser_plugin/browser_plugin_embedder.h
|
View
|
1
2
3
4
5
|
1 chunk |
+2 lines, -0 lines |
0 comments
|
Download
|
 |
M |
content/browser/browser_plugin/browser_plugin_embedder.cc
|
View
|
1
2
|
1 chunk |
+12 lines, -0 lines |
0 comments
|
Download
|
 |
M |
content/browser/browser_plugin/browser_plugin_embedder_helper.h
|
View
|
1
2
|
1 chunk |
+2 lines, -0 lines |
0 comments
|
Download
|
 |
M |
content/browser/browser_plugin/browser_plugin_embedder_helper.cc
|
View
|
1
2
|
2 chunks |
+10 lines, -0 lines |
0 comments
|
Download
|
 |
M |
content/browser/browser_plugin/browser_plugin_guest.h
|
View
|
1
2
3
4
5
|
1 chunk |
+4 lines, -0 lines |
0 comments
|
Download
|
 |
M |
content/browser/browser_plugin/browser_plugin_guest.cc
|
View
|
1
2
3
4
5
6
|
1 chunk |
+11 lines, -0 lines |
0 comments
|
Download
|
 |
M |
content/browser/browser_plugin/browser_plugin_host_browsertest.cc
|
View
|
1
2
3
4
5
|
1 chunk |
+82 lines, -0 lines |
0 comments
|
Download
|
 |
M |
content/browser/browser_plugin/test_browser_plugin_guest.h
|
View
|
1
2
3
4
5
|
4 chunks |
+11 lines, -0 lines |
0 comments
|
Download
|
 |
M |
content/browser/browser_plugin/test_browser_plugin_guest.cc
|
View
|
1
2
3
4
5
|
4 chunks |
+43 lines, -0 lines |
0 comments
|
Download
|
 |
M |
content/common/browser_plugin_messages.h
|
View
|
1
|
1 chunk |
+8 lines, -0 lines |
0 comments
|
Download
|
 |
M |
content/renderer/browser_plugin/browser_plugin.h
|
View
|
1
2
3
4
5
|
1 chunk |
+5 lines, -0 lines |
0 comments
|
Download
|
 |
M |
content/renderer/browser_plugin/browser_plugin.cc
|
View
|
1
2
3
4
5
|
1 chunk |
+17 lines, -0 lines |
0 comments
|
Download
|
 |
M |
content/renderer/browser_plugin/browser_plugin_bindings.cc
|
View
|
1
2
3
4
5
6
|
3 chunks |
+26 lines, -0 lines |
0 comments
|
Download
|
 |
M |
content/renderer/browser_plugin/browser_plugin_browsertest.cc
|
View
|
1
2
3
4
5
|
1 chunk |
+18 lines, -0 lines |
0 comments
|
Download
|
Total messages: 13 (0 generated)
|