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

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

Issue 18191004: webkit: Migrate from googleurl/ includes to url/ ones. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: sync+rebase Created 7 years, 5 months 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
« no previous file with comments | « webkit/plugins/ppapi/plugin_delegate.h ('k') | webkit/plugins/ppapi/ppapi_webplugin_impl.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 #ifndef WEBKIT_PLUGINS_PPAPI_PPAPI_PLUGIN_INSTANCE_H_ 5 #ifndef WEBKIT_PLUGINS_PPAPI_PPAPI_PLUGIN_INSTANCE_H_
6 #define WEBKIT_PLUGINS_PPAPI_PPAPI_PLUGIN_INSTANCE_H_ 6 #define WEBKIT_PLUGINS_PPAPI_PPAPI_PLUGIN_INSTANCE_H_
7 7
8 #include <set> 8 #include <set>
9 #include <string> 9 #include <string>
10 #include <vector> 10 #include <vector>
11 11
12 #include "base/basictypes.h" 12 #include "base/basictypes.h"
13 #include "base/compiler_specific.h" 13 #include "base/compiler_specific.h"
14 #include "base/memory/ref_counted.h" 14 #include "base/memory/ref_counted.h"
15 #include "base/memory/scoped_ptr.h" 15 #include "base/memory/scoped_ptr.h"
16 #include "base/memory/weak_ptr.h" 16 #include "base/memory/weak_ptr.h"
17 #include "base/strings/string16.h" 17 #include "base/strings/string16.h"
18 #include "cc/layers/texture_layer_client.h" 18 #include "cc/layers/texture_layer_client.h"
19 #include "googleurl/src/gurl.h"
20 #include "ppapi/c/dev/pp_cursor_type_dev.h" 19 #include "ppapi/c/dev/pp_cursor_type_dev.h"
21 #include "ppapi/c/dev/ppp_find_dev.h" 20 #include "ppapi/c/dev/ppp_find_dev.h"
22 #include "ppapi/c/dev/ppp_printing_dev.h" 21 #include "ppapi/c/dev/ppp_printing_dev.h"
23 #include "ppapi/c/dev/ppp_selection_dev.h" 22 #include "ppapi/c/dev/ppp_selection_dev.h"
24 #include "ppapi/c/dev/ppp_text_input_dev.h" 23 #include "ppapi/c/dev/ppp_text_input_dev.h"
25 #include "ppapi/c/dev/ppp_zoom_dev.h" 24 #include "ppapi/c/dev/ppp_zoom_dev.h"
26 #include "ppapi/c/pp_completion_callback.h" 25 #include "ppapi/c/pp_completion_callback.h"
27 #include "ppapi/c/pp_instance.h" 26 #include "ppapi/c/pp_instance.h"
28 #include "ppapi/c/pp_resource.h" 27 #include "ppapi/c/pp_resource.h"
29 #include "ppapi/c/pp_time.h" 28 #include "ppapi/c/pp_time.h"
(...skipping 16 matching lines...) Expand all
46 #include "ppapi/thunk/resource_creation_api.h" 45 #include "ppapi/thunk/resource_creation_api.h"
47 #include "skia/ext/refptr.h" 46 #include "skia/ext/refptr.h"
48 #include "third_party/WebKit/public/platform/WebCanvas.h" 47 #include "third_party/WebKit/public/platform/WebCanvas.h"
49 #include "third_party/WebKit/public/platform/WebString.h" 48 #include "third_party/WebKit/public/platform/WebString.h"
50 #include "third_party/WebKit/public/platform/WebURLLoaderClient.h" 49 #include "third_party/WebKit/public/platform/WebURLLoaderClient.h"
51 #include "third_party/WebKit/public/platform/WebURLResponse.h" 50 #include "third_party/WebKit/public/platform/WebURLResponse.h"
52 #include "third_party/WebKit/public/web/WebPlugin.h" 51 #include "third_party/WebKit/public/web/WebPlugin.h"
53 #include "third_party/WebKit/public/web/WebUserGestureToken.h" 52 #include "third_party/WebKit/public/web/WebUserGestureToken.h"
54 #include "ui/base/ime/text_input_type.h" 53 #include "ui/base/ime/text_input_type.h"
55 #include "ui/gfx/rect.h" 54 #include "ui/gfx/rect.h"
55 #include "url/gurl.h"
56 #include "webkit/plugins/ppapi/plugin_delegate.h" 56 #include "webkit/plugins/ppapi/plugin_delegate.h"
57 #include "webkit/plugins/ppapi/ppp_pdf.h" 57 #include "webkit/plugins/ppapi/ppp_pdf.h"
58 #include "webkit/plugins/webkit_plugins_export.h" 58 #include "webkit/plugins/webkit_plugins_export.h"
59 59
60 struct PP_Point; 60 struct PP_Point;
61 struct _NPP; 61 struct _NPP;
62 62
63 class SkBitmap; 63 class SkBitmap;
64 class TransportDIB; 64 class TransportDIB;
65 65
(...skipping 768 matching lines...) Expand 10 before | Expand all | Expand 10 after
834 scoped_ptr<struct _NPP> npp_; 834 scoped_ptr<struct _NPP> npp_;
835 835
836 friend class PpapiPluginInstanceTest; 836 friend class PpapiPluginInstanceTest;
837 DISALLOW_COPY_AND_ASSIGN(PluginInstance); 837 DISALLOW_COPY_AND_ASSIGN(PluginInstance);
838 }; 838 };
839 839
840 } // namespace ppapi 840 } // namespace ppapi
841 } // namespace webkit 841 } // namespace webkit
842 842
843 #endif // WEBKIT_PLUGINS_PPAPI_PPAPI_PLUGIN_INSTANCE_H_ 843 #endif // WEBKIT_PLUGINS_PPAPI_PPAPI_PLUGIN_INSTANCE_H_
OLDNEW
« no previous file with comments | « webkit/plugins/ppapi/plugin_delegate.h ('k') | webkit/plugins/ppapi/ppapi_webplugin_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698