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

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

Issue 10913257: Convert url request info to new proxy API. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: merge Created 8 years, 3 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/ppapi_plugin_instance.cc ('k') | webkit/plugins/ppapi/ppb_flash_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_PPB_FLASH_IMPL_H_ 5 #ifndef WEBKIT_PLUGINS_PPAPI_PPB_FLASH_IMPL_H_
6 #define WEBKIT_PLUGINS_PPAPI_PPB_FLASH_IMPL_H_ 6 #define WEBKIT_PLUGINS_PPAPI_PPB_FLASH_IMPL_H_
7 7
8 #include "base/basictypes.h" 8 #include "base/basictypes.h"
9 #include "base/compiler_specific.h" 9 #include "base/compiler_specific.h"
10 #include "base/memory/scoped_ptr.h" 10 #include "base/memory/scoped_ptr.h"
(...skipping 28 matching lines...) Expand all
39 const float transformation[3][3], 39 const float transformation[3][3],
40 PP_Bool allow_subpixel_aa, 40 PP_Bool allow_subpixel_aa,
41 uint32_t glyph_count, 41 uint32_t glyph_count,
42 const uint16_t glyph_indices[], 42 const uint16_t glyph_indices[],
43 const PP_Point glyph_advances[]) OVERRIDE; 43 const PP_Point glyph_advances[]) OVERRIDE;
44 virtual PP_Var GetProxyForURL(PP_Instance instance, const char* url) OVERRIDE; 44 virtual PP_Var GetProxyForURL(PP_Instance instance, const char* url) OVERRIDE;
45 virtual int32_t Navigate(PP_Instance instance, 45 virtual int32_t Navigate(PP_Instance instance,
46 PP_Resource request_info, 46 PP_Resource request_info,
47 const char* target, 47 const char* target,
48 PP_Bool from_user_action) OVERRIDE; 48 PP_Bool from_user_action) OVERRIDE;
49 virtual int32_t Navigate(PP_Instance instance,
50 const ::ppapi::URLRequestInfoData& data,
51 const char* target,
52 PP_Bool from_user_action) OVERRIDE;
49 virtual void RunMessageLoop(PP_Instance instance) OVERRIDE; 53 virtual void RunMessageLoop(PP_Instance instance) OVERRIDE;
50 virtual void QuitMessageLoop(PP_Instance instance) OVERRIDE; 54 virtual void QuitMessageLoop(PP_Instance instance) OVERRIDE;
51 virtual double GetLocalTimeZoneOffset(PP_Instance instance, 55 virtual double GetLocalTimeZoneOffset(PP_Instance instance,
52 PP_Time t) OVERRIDE; 56 PP_Time t) OVERRIDE;
53 virtual PP_Bool IsRectTopmost(PP_Instance instance, 57 virtual PP_Bool IsRectTopmost(PP_Instance instance,
54 const PP_Rect* rect) OVERRIDE; 58 const PP_Rect* rect) OVERRIDE;
55 virtual void UpdateActivity(PP_Instance instance) OVERRIDE; 59 virtual void UpdateActivity(PP_Instance instance) OVERRIDE;
56 virtual PP_Var GetDeviceID(PP_Instance instance) OVERRIDE; 60 virtual PP_Var GetDeviceID(PP_Instance instance) OVERRIDE;
57 virtual int32_t GetSettingInt(PP_Instance instance, 61 virtual int32_t GetSettingInt(PP_Instance instance,
58 PP_FlashSetting setting) OVERRIDE; 62 PP_FlashSetting setting) OVERRIDE;
(...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after
121 // This object is lazily created by InitClipboard. 125 // This object is lazily created by InitClipboard.
122 scoped_ptr<webkit_glue::ClipboardClient> clipboard_client_; 126 scoped_ptr<webkit_glue::ClipboardClient> clipboard_client_;
123 127
124 DISALLOW_COPY_AND_ASSIGN(PPB_Flash_Impl); 128 DISALLOW_COPY_AND_ASSIGN(PPB_Flash_Impl);
125 }; 129 };
126 130
127 } // namespace ppapi 131 } // namespace ppapi
128 } // namespace webkit 132 } // namespace webkit
129 133
130 #endif // WEBKIT_PLUGINS_PPAPI_PPB_FLASH_IMPL_H_ 134 #endif // WEBKIT_PLUGINS_PPAPI_PPB_FLASH_IMPL_H_
OLDNEW
« no previous file with comments | « webkit/plugins/ppapi/ppapi_plugin_instance.cc ('k') | webkit/plugins/ppapi/ppb_flash_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698