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

Side by Side Diff: content/renderer/npapi/webplugin_impl.cc

Issue 68683009: Rewrite include paths for Blink public/ headers that have moved (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 7 years, 1 month 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
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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 "content/renderer/npapi/webplugin_impl.h" 5 #include "content/renderer/npapi/webplugin_impl.h"
6 6
7 #include "base/bind.h" 7 #include "base/bind.h"
8 #include "base/command_line.h" 8 #include "base/command_line.h"
9 #include "base/debug/crash_logging.h" 9 #include "base/debug/crash_logging.h"
10 #include "base/logging.h" 10 #include "base/logging.h"
(...skipping 15 matching lines...) Expand all
26 #include "content/renderer/npapi/webplugin_delegate_proxy.h" 26 #include "content/renderer/npapi/webplugin_delegate_proxy.h"
27 #include "content/renderer/render_process.h" 27 #include "content/renderer/render_process.h"
28 #include "content/renderer/render_thread_impl.h" 28 #include "content/renderer/render_thread_impl.h"
29 #include "content/renderer/render_view_impl.h" 29 #include "content/renderer/render_view_impl.h"
30 #include "net/base/escape.h" 30 #include "net/base/escape.h"
31 #include "net/base/net_errors.h" 31 #include "net/base/net_errors.h"
32 #include "net/http/http_response_headers.h" 32 #include "net/http/http_response_headers.h"
33 #include "skia/ext/platform_canvas.h" 33 #include "skia/ext/platform_canvas.h"
34 #include "third_party/WebKit/public/platform/WebCString.h" 34 #include "third_party/WebKit/public/platform/WebCString.h"
35 #include "third_party/WebKit/public/platform/WebCookieJar.h" 35 #include "third_party/WebKit/public/platform/WebCookieJar.h"
36 #include "third_party/WebKit/public/platform/WebCursorInfo.h"
36 #include "third_party/WebKit/public/platform/WebData.h" 37 #include "third_party/WebKit/public/platform/WebData.h"
37 #include "third_party/WebKit/public/platform/WebHTTPBody.h" 38 #include "third_party/WebKit/public/platform/WebHTTPBody.h"
38 #include "third_party/WebKit/public/platform/WebHTTPHeaderVisitor.h" 39 #include "third_party/WebKit/public/platform/WebHTTPHeaderVisitor.h"
39 #include "third_party/WebKit/public/platform/WebURL.h" 40 #include "third_party/WebKit/public/platform/WebURL.h"
40 #include "third_party/WebKit/public/platform/WebURLError.h" 41 #include "third_party/WebKit/public/platform/WebURLError.h"
41 #include "third_party/WebKit/public/platform/WebURLLoader.h" 42 #include "third_party/WebKit/public/platform/WebURLLoader.h"
42 #include "third_party/WebKit/public/platform/WebURLLoaderClient.h" 43 #include "third_party/WebKit/public/platform/WebURLLoaderClient.h"
43 #include "third_party/WebKit/public/platform/WebURLResponse.h" 44 #include "third_party/WebKit/public/platform/WebURLResponse.h"
44 #include "third_party/WebKit/public/web/WebConsoleMessage.h" 45 #include "third_party/WebKit/public/web/WebConsoleMessage.h"
45 #include "third_party/WebKit/public/web/WebCursorInfo.h"
46 #include "third_party/WebKit/public/web/WebDocument.h" 46 #include "third_party/WebKit/public/web/WebDocument.h"
47 #include "third_party/WebKit/public/web/WebFrame.h" 47 #include "third_party/WebKit/public/web/WebFrame.h"
48 #include "third_party/WebKit/public/web/WebInputEvent.h" 48 #include "third_party/WebKit/public/web/WebInputEvent.h"
49 #include "third_party/WebKit/public/web/WebKit.h" 49 #include "third_party/WebKit/public/web/WebKit.h"
50 #include "third_party/WebKit/public/web/WebPluginContainer.h" 50 #include "third_party/WebKit/public/web/WebPluginContainer.h"
51 #include "third_party/WebKit/public/web/WebPluginParams.h" 51 #include "third_party/WebKit/public/web/WebPluginParams.h"
52 #include "third_party/WebKit/public/web/WebURLLoaderOptions.h" 52 #include "third_party/WebKit/public/web/WebURLLoaderOptions.h"
53 #include "third_party/WebKit/public/web/WebView.h" 53 #include "third_party/WebKit/public/web/WebView.h"
54 #include "ui/gfx/rect.h" 54 #include "ui/gfx/rect.h"
55 #include "url/gurl.h" 55 #include "url/gurl.h"
(...skipping 1441 matching lines...) Expand 10 before | Expand all | Expand 10 after
1497 case PLUGIN_SRC: 1497 case PLUGIN_SRC:
1498 webframe_->setReferrerForRequest(*request, plugin_url_); 1498 webframe_->setReferrerForRequest(*request, plugin_url_);
1499 break; 1499 break;
1500 1500
1501 default: 1501 default:
1502 break; 1502 break;
1503 } 1503 }
1504 } 1504 }
1505 1505
1506 } // namespace content 1506 } // namespace content
OLDNEW
« no previous file with comments | « content/renderer/media/websourcebuffer_impl.h ('k') | content/renderer/pepper/pepper_plugin_instance_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698