|
Browser Plugin: Implement BrowserPluginObserver.
The major changes in this CL are:
- Refactors BrowserPlugin to BrowserPlugin in content/public and BrowserPluginImpl.
- Refactors BrowserPluginBindings, moving out method and property bindings to content/public.
- Introduces BrowserPluginObserver, and adds an observer list to BrowserPluginImpl.
- Messages sent to BrowserPlugin from outside are encapsulated in another message that takes care of the instance ID routing BrowserPlugin*Msg_ForwardMessage.
BUG= 166165
Test=BrowserPluginHostTest.*, BrowserPluginTest.*
Total comments: 41
Total comments: 16
|
Unified diffs |
Side-by-side diffs |
Delta from patch set |
Stats (+969 lines, -2326 lines) |
Patch |
 |
M |
content/common/browser_plugin_messages.h
|
View
|
1
2
3
4
5
6
7
8
9
10
|
2 chunks |
+11 lines, -0 lines |
0 comments
|
Download
|
 |
M |
content/content_renderer.gypi
|
View
|
1
2
3
4
5
6
7
8
9
10
|
2 chunks |
+7 lines, -2 lines |
0 comments
|
Download
|
 |
A |
content/public/renderer/browser_plugin/browser_plugin.h
|
View
|
1
2
3
4
5
6
7
8
9
|
1 chunk |
+82 lines, -0 lines |
0 comments
|
Download
|
 |
A |
content/public/renderer/browser_plugin/browser_plugin_method_binding.h
|
View
|
1
2
3
4
5
6
7
8
9
|
1 chunk |
+38 lines, -0 lines |
0 comments
|
Download
|
 |
A |
content/public/renderer/browser_plugin/browser_plugin_observer.h
|
View
|
1
2
3
4
5
6
7
8
9
|
1 chunk |
+53 lines, -0 lines |
0 comments
|
Download
|
 |
A |
content/public/renderer/browser_plugin/browser_plugin_observer.cc
|
View
|
1
2
3
4
5
6
7
8
9
|
1 chunk |
+51 lines, -0 lines |
0 comments
|
Download
|
 |
A |
content/public/renderer/browser_plugin/browser_plugin_property_binding.h
|
View
|
1
2
3
4
5
6
7
8
9
|
1 chunk |
+42 lines, -0 lines |
0 comments
|
Download
|
 |
M |
content/public/renderer/content_renderer_client.h
|
View
|
1
2
3
4
5
6
7
8
9
10
|
2 chunks |
+4 lines, -0 lines |
0 comments
|
Download
|
 |
D |
content/renderer/browser_plugin/browser_plugin.h
|
View
|
1
2
3
4
5
6
7
8
9
10
|
1 chunk |
+0 lines, -410 lines |
0 comments
|
Download
|
 |
D |
content/renderer/browser_plugin/browser_plugin.cc
|
View
|
1
2
3
4
5
6
7
8
9
10
|
1 chunk |
+0 lines, -1337 lines |
0 comments
|
Download
|
 |
M |
content/renderer/browser_plugin/browser_plugin_bindings.h
|
View
|
1
2
3
4
|
3 chunks |
+11 lines, -4 lines |
0 comments
|
Download
|
 |
M |
content/renderer/browser_plugin/browser_plugin_bindings.cc
|
View
|
1
2
3
4
5
6
7
8
9
10
|
25 chunks |
+298 lines, -300 lines |
0 comments
|
Download
|
 |
M |
content/renderer/browser_plugin/browser_plugin_browsertest.cc
|
View
|
1
2
3
4
5
6
7
8
9
10
|
1 chunk |
+1 line, -1 line |
0 comments
|
Download
|
 |
A + |
content/renderer/browser_plugin/browser_plugin_impl.h
|
View
|
1
2
3
4
5
6
7
8
9
10
|
9 chunks |
+50 lines, -31 lines |
0 comments
|
Download
|
 |
A + |
content/renderer/browser_plugin/browser_plugin_impl.cc
|
View
|
1
2
3
4
5
6
7
8
9
10
|
58 chunks |
+273 lines, -205 lines |
0 comments
|
Download
|
 |
M |
content/renderer/browser_plugin/browser_plugin_manager.h
|
View
|
1
2
3
4
|
3 chunks |
+15 lines, -6 lines |
0 comments
|
Download
|
 |
M |
content/renderer/browser_plugin/browser_plugin_manager.cc
|
View
|
1
2
3
4
|
3 chunks |
+6 lines, -4 lines |
0 comments
|
Download
|
 |
M |
content/renderer/browser_plugin/browser_plugin_manager_impl.h
|
View
|
1
2
3
4
|
2 chunks |
+3 lines, -3 lines |
0 comments
|
Download
|
 |
M |
content/renderer/browser_plugin/browser_plugin_manager_impl.cc
|
View
|
1
2
3
4
5
6
7
8
9
10
|
7 chunks |
+10 lines, -9 lines |
0 comments
|
Download
|
 |
M |
content/renderer/browser_plugin/mock_browser_plugin.h
|
View
|
1
2
3
4
|
2 chunks |
+5 lines, -5 lines |
0 comments
|
Download
|
 |
M |
content/renderer/browser_plugin/mock_browser_plugin.cc
|
View
|
1
2
3
4
|
1 chunk |
+1 line, -1 line |
0 comments
|
Download
|
 |
M |
content/renderer/browser_plugin/mock_browser_plugin_manager.h
|
View
|
1
2
3
4
5
|
2 chunks |
+3 lines, -3 lines |
0 comments
|
Download
|
 |
M |
content/renderer/browser_plugin/mock_browser_plugin_manager.cc
|
View
|
1
2
3
4
5
|
3 chunks |
+3 lines, -3 lines |
0 comments
|
Download
|
 |
M |
content/renderer/render_view_impl.cc
|
View
|
1
2
3
4
5
6
7
8
9
10
|
2 chunks |
+2 lines, -2 lines |
0 comments
|
Download
|
Total messages: 20 (0 generated)
|