OLD | NEW |
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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/plugins/plugin_placeholder.h" | 5 #include "chrome/renderer/plugins/plugin_placeholder.h" |
6 | 6 |
7 #include "base/string_util.h" | 7 #include "base/string_util.h" |
8 #include "chrome/renderer/plugins/plugin_uma.h" | 8 #include "chrome/renderer/plugins/plugin_uma.h" |
9 #include "content/public/renderer/render_view.h" | 9 #include "content/public/renderer/render_view.h" |
10 #include "third_party/WebKit/Source/WebKit/chromium/public/WebData.h" | 10 #include "third_party/WebKit/Source/WebKit/chromium/public/platform/WebData.h" |
11 #include "third_party/WebKit/Source/WebKit/chromium/public/WebDocument.h" | 11 #include "third_party/WebKit/Source/WebKit/chromium/public/WebDocument.h" |
12 #include "third_party/WebKit/Source/WebKit/chromium/public/WebElement.h" | 12 #include "third_party/WebKit/Source/WebKit/chromium/public/WebElement.h" |
13 #include "third_party/WebKit/Source/WebKit/chromium/public/WebFrame.h" | 13 #include "third_party/WebKit/Source/WebKit/chromium/public/WebFrame.h" |
14 #include "third_party/WebKit/Source/WebKit/chromium/public/WebPluginContainer.h" | 14 #include "third_party/WebKit/Source/WebKit/chromium/public/WebPluginContainer.h" |
15 #include "third_party/WebKit/Source/WebKit/chromium/public/WebRegularExpression.
h" | 15 #include "third_party/WebKit/Source/WebKit/chromium/public/WebRegularExpression.
h" |
16 #include "third_party/WebKit/Source/WebKit/chromium/public/WebTextCaseSensitivit
y.h" | 16 #include "third_party/WebKit/Source/WebKit/chromium/public/WebTextCaseSensitivit
y.h" |
17 #include "third_party/WebKit/Source/WebKit/chromium/public/WebView.h" | 17 #include "third_party/WebKit/Source/WebKit/chromium/public/WebView.h" |
18 | 18 |
19 using WebKit::WebElement; | 19 using WebKit::WebElement; |
20 using WebKit::WebFrame; | 20 using WebKit::WebFrame; |
(...skipping 99 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
120 | 120 |
121 void PluginPlaceholder::WillDestroyPlugin() { | 121 void PluginPlaceholder::WillDestroyPlugin() { |
122 delete this; | 122 delete this; |
123 } | 123 } |
124 | 124 |
125 void PluginPlaceholder::ShowContextMenu(const WebMouseEvent& event) { | 125 void PluginPlaceholder::ShowContextMenu(const WebMouseEvent& event) { |
126 } | 126 } |
127 | 127 |
128 void PluginPlaceholder::DidFinishLoading() { | 128 void PluginPlaceholder::DidFinishLoading() { |
129 } | 129 } |
OLD | NEW |