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

Side by Side Diff: content/child/npapi/webplugin_accelerated_surface_mac.h

Issue 832953002: Cleanup: Update the path to gfx size headers. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: REBASE Created 5 years, 11 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
« no previous file with comments | « content/child/image_decoder.h ('k') | content/common/browser_plugin/browser_plugin_messages.h » ('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) 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 CONTENT_CHILD_NPAPI_WEBPLUGIN_ACCELERATED_SURFACE_MAC_H_ 5 #ifndef CONTENT_CHILD_NPAPI_WEBPLUGIN_ACCELERATED_SURFACE_MAC_H_
6 #define CONTENT_CHILD_NPAPI_WEBPLUGIN_ACCELERATED_SURFACE_MAC_H_ 6 #define CONTENT_CHILD_NPAPI_WEBPLUGIN_ACCELERATED_SURFACE_MAC_H_
7 7
8 #include "ui/gfx/geometry/size.h"
8 #include "ui/gfx/native_widget_types.h" 9 #include "ui/gfx/native_widget_types.h"
9 #include "ui/gfx/size.h"
10 10
11 // Avoid having to include OpenGL headers here. 11 // Avoid having to include OpenGL headers here.
12 typedef struct _CGLContextObject* CGLContextObj; 12 typedef struct _CGLContextObject* CGLContextObj;
13 13
14 namespace content { 14 namespace content {
15 15
16 // Interface class for interacting with an accelerated plugin surface, used 16 // Interface class for interacting with an accelerated plugin surface, used
17 // for the Core Animation flavors of plugin drawing on the Mac. 17 // for the Core Animation flavors of plugin drawing on the Mac.
18 class WebPluginAcceleratedSurface { 18 class WebPluginAcceleratedSurface {
19 public: 19 public:
(...skipping 10 matching lines...) Expand all
30 virtual void StartDrawing() = 0; 30 virtual void StartDrawing() = 0;
31 31
32 // Ends a drawing session. Changes to the surface may not be reflected until 32 // Ends a drawing session. Changes to the surface may not be reflected until
33 // this is called. 33 // this is called.
34 virtual void EndDrawing() = 0; 34 virtual void EndDrawing() = 0;
35 }; 35 };
36 36
37 } // namespace content 37 } // namespace content
38 38
39 #endif // CONTENT_CHILD_NPAPI_WEBPLUGIN_ACCELERATED_SURFACE_MAC_H_ 39 #endif // CONTENT_CHILD_NPAPI_WEBPLUGIN_ACCELERATED_SURFACE_MAC_H_
OLDNEW
« no previous file with comments | « content/child/image_decoder.h ('k') | content/common/browser_plugin/browser_plugin_messages.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698