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

Side by Side Diff: webkit/plugins/ppapi/ppapi_plugin_instance.cc

Issue 8787003: Update these includes to use the new header locations (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 9 years 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 | Annotate | Revision Log
OLDNEW
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 "webkit/plugins/ppapi/ppapi_plugin_instance.h" 5 #include "webkit/plugins/ppapi/ppapi_plugin_instance.h"
6 6
7 #include "base/bind.h" 7 #include "base/bind.h"
8 #include "base/debug/trace_event.h" 8 #include "base/debug/trace_event.h"
9 #include "base/logging.h" 9 #include "base/logging.h"
10 #include "base/memory/linked_ptr.h" 10 #include "base/memory/linked_ptr.h"
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
44 #include "printing/units.h" 44 #include "printing/units.h"
45 #include "skia/ext/platform_canvas.h" 45 #include "skia/ext/platform_canvas.h"
46 #include "third_party/WebKit/Source/WebKit/chromium/public/WebBindings.h" 46 #include "third_party/WebKit/Source/WebKit/chromium/public/WebBindings.h"
47 #include "third_party/WebKit/Source/WebKit/chromium/public/WebConsoleMessage.h" 47 #include "third_party/WebKit/Source/WebKit/chromium/public/WebConsoleMessage.h"
48 #include "third_party/WebKit/Source/WebKit/chromium/public/WebCursorInfo.h" 48 #include "third_party/WebKit/Source/WebKit/chromium/public/WebCursorInfo.h"
49 #include "third_party/WebKit/Source/WebKit/chromium/public/WebDocument.h" 49 #include "third_party/WebKit/Source/WebKit/chromium/public/WebDocument.h"
50 #include "third_party/WebKit/Source/WebKit/chromium/public/WebElement.h" 50 #include "third_party/WebKit/Source/WebKit/chromium/public/WebElement.h"
51 #include "third_party/WebKit/Source/WebKit/chromium/public/WebFrame.h" 51 #include "third_party/WebKit/Source/WebKit/chromium/public/WebFrame.h"
52 #include "third_party/WebKit/Source/WebKit/chromium/public/WebInputEvent.h" 52 #include "third_party/WebKit/Source/WebKit/chromium/public/WebInputEvent.h"
53 #include "third_party/WebKit/Source/WebKit/chromium/public/WebPluginContainer.h" 53 #include "third_party/WebKit/Source/WebKit/chromium/public/WebPluginContainer.h"
54 #include "third_party/WebKit/Source/WebKit/chromium/public/WebRect.h" 54 #include "third_party/WebKit/Source/WebKit/chromium/public/platform/WebRect.h"
55 #include "third_party/WebKit/Source/WebKit/chromium/public/WebSecurityOrigin.h" 55 #include "third_party/WebKit/Source/WebKit/chromium/public/WebSecurityOrigin.h"
56 #include "third_party/WebKit/Source/WebKit/chromium/public/WebString.h" 56 #include "third_party/WebKit/Source/WebKit/chromium/public/platform/WebString.h"
57 #include "third_party/WebKit/Source/WebKit/chromium/public/WebURL.h" 57 #include "third_party/WebKit/Source/WebKit/chromium/public/platform/WebURL.h"
58 #include "third_party/WebKit/Source/WebKit/chromium/public/WebURLRequest.h" 58 #include "third_party/WebKit/Source/WebKit/chromium/public/platform/WebURLReques t.h"
59 #include "third_party/WebKit/Source/WebKit/chromium/public/WebView.h" 59 #include "third_party/WebKit/Source/WebKit/chromium/public/WebView.h"
60 #include "ui/gfx/rect.h" 60 #include "ui/gfx/rect.h"
61 #include "ui/gfx/skia_util.h" 61 #include "ui/gfx/skia_util.h"
62 #include "webkit/plugins/ppapi/common.h" 62 #include "webkit/plugins/ppapi/common.h"
63 #include "webkit/plugins/ppapi/event_conversion.h" 63 #include "webkit/plugins/ppapi/event_conversion.h"
64 #include "webkit/plugins/ppapi/fullscreen_container.h" 64 #include "webkit/plugins/ppapi/fullscreen_container.h"
65 #include "webkit/plugins/ppapi/host_globals.h" 65 #include "webkit/plugins/ppapi/host_globals.h"
66 #include "webkit/plugins/ppapi/message_channel.h" 66 #include "webkit/plugins/ppapi/message_channel.h"
67 #include "webkit/plugins/ppapi/npapi_glue.h" 67 #include "webkit/plugins/ppapi/npapi_glue.h"
68 #include "webkit/plugins/ppapi/plugin_delegate.h" 68 #include "webkit/plugins/ppapi/plugin_delegate.h"
(...skipping 1956 matching lines...) Expand 10 before | Expand all | Expand 10 after
2025 screen_size_for_fullscreen_ = gfx::Size(); 2025 screen_size_for_fullscreen_ = gfx::Size();
2026 WebElement element = container_->element(); 2026 WebElement element = container_->element();
2027 element.setAttribute(WebString::fromUTF8(kWidth), width_before_fullscreen_); 2027 element.setAttribute(WebString::fromUTF8(kWidth), width_before_fullscreen_);
2028 element.setAttribute(WebString::fromUTF8(kHeight), height_before_fullscreen_); 2028 element.setAttribute(WebString::fromUTF8(kHeight), height_before_fullscreen_);
2029 element.setAttribute(WebString::fromUTF8(kBorder), border_before_fullscreen_); 2029 element.setAttribute(WebString::fromUTF8(kBorder), border_before_fullscreen_);
2030 element.setAttribute(WebString::fromUTF8(kStyle), style_before_fullscreen_); 2030 element.setAttribute(WebString::fromUTF8(kStyle), style_before_fullscreen_);
2031 } 2031 }
2032 2032
2033 } // namespace ppapi 2033 } // namespace ppapi
2034 } // namespace webkit 2034 } // namespace webkit
OLDNEW
« no previous file with comments | « webkit/plugins/ppapi/ppapi_plugin_instance.h ('k') | webkit/plugins/ppapi/ppapi_webplugin_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698