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

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

Issue 6312156: Change includes of gfx/* to ui/gfx/* (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 9 years, 10 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
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 #ifndef WEBKIT_PLUGINS_PPAPI_PLUGIN_DELEGATE_H_ 5 #ifndef WEBKIT_PLUGINS_PPAPI_PLUGIN_DELEGATE_H_
6 #define WEBKIT_PLUGINS_PPAPI_PLUGIN_DELEGATE_H_ 6 #define WEBKIT_PLUGINS_PPAPI_PLUGIN_DELEGATE_H_
7 7
8 #include <string> 8 #include <string>
9 9
10 #include "base/callback.h" 10 #include "base/callback.h"
11 #include "base/platform_file.h" 11 #include "base/platform_file.h"
12 #include "base/ref_counted.h" 12 #include "base/ref_counted.h"
13 #include "base/shared_memory.h" 13 #include "base/shared_memory.h"
14 #include "base/sync_socket.h" 14 #include "base/sync_socket.h"
15 #include "gfx/size.h"
16 #include "googleurl/src/gurl.h" 15 #include "googleurl/src/gurl.h"
17 #include "ppapi/c/pp_completion_callback.h" 16 #include "ppapi/c/pp_completion_callback.h"
18 #include "ppapi/c/pp_errors.h" 17 #include "ppapi/c/pp_errors.h"
19 #include "ppapi/c/pp_instance.h" 18 #include "ppapi/c/pp_instance.h"
20 #include "ppapi/c/pp_stdint.h" 19 #include "ppapi/c/pp_stdint.h"
20 #include "ui/gfx/size.h"
21 #include "webkit/fileapi/file_system_types.h" 21 #include "webkit/fileapi/file_system_types.h"
22 #include "webkit/plugins/ppapi/dir_contents.h" 22 #include "webkit/plugins/ppapi/dir_contents.h"
23 23
24 class AudioMessageFilter; 24 class AudioMessageFilter;
25 class GURL; 25 class GURL;
26 26
27 namespace base { 27 namespace base {
28 class MessageLoopProxy; 28 class MessageLoopProxy;
29 class Time; 29 class Time;
30 } 30 }
(...skipping 303 matching lines...) Expand 10 before | Expand all | Expand 10 after
334 virtual void SetContentRestriction(int restrictions) = 0; 334 virtual void SetContentRestriction(int restrictions) = 0;
335 335
336 // Tells the browser that the PDF has an unsupported feature. 336 // Tells the browser that the PDF has an unsupported feature.
337 virtual void HasUnsupportedFeature() = 0; 337 virtual void HasUnsupportedFeature() = 0;
338 }; 338 };
339 339
340 } // namespace ppapi 340 } // namespace ppapi
341 } // namespace webkit 341 } // namespace webkit
342 342
343 #endif // WEBKIT_PLUGINS_PPAPI_PLUGIN_DELEGATE_H_ 343 #endif // WEBKIT_PLUGINS_PPAPI_PLUGIN_DELEGATE_H_
OLDNEW
« no previous file with comments | « webkit/plugins/npapi/webplugin_page_delegate.h ('k') | webkit/plugins/ppapi/ppapi_plugin_instance.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698