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

Side by Side Diff: chrome_frame/chrome_frame_npapi_entrypoints.h

Issue 6223003: Add support in the ChromeFrame NPAPI plugin for receiving URL redirect notifi... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 9 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 | Annotate | Revision Log
« no previous file with comments | « chrome_frame/chrome_frame_npapi.cc ('k') | chrome_frame/chrome_frame_npapi_entrypoints.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) 2009 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2009 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 CHROME_FRAME_CHROME_FRAME_NPAPI_ENTRYPOINTS_H_ 5 #ifndef CHROME_FRAME_CHROME_FRAME_NPAPI_ENTRYPOINTS_H_
6 #define CHROME_FRAME_CHROME_FRAME_NPAPI_ENTRYPOINTS_H_ 6 #define CHROME_FRAME_CHROME_FRAME_NPAPI_ENTRYPOINTS_H_
7 7
8 #include "chrome_frame/np_browser_functions.h" 8 #include "chrome_frame/np_browser_functions.h"
9 9
10 namespace chrome_frame { 10 namespace chrome_frame {
(...skipping 15 matching lines...) Expand all
26 NPError NPP_SetValue(NPP instance, NPNVariable variable, void* value); 26 NPError NPP_SetValue(NPP instance, NPNVariable variable, void* value);
27 27
28 int32 NPP_WriteReady(NPP instance, NPStream* stream); 28 int32 NPP_WriteReady(NPP instance, NPStream* stream);
29 29
30 int32 NPP_Write(NPP instance, NPStream* stream, int32 offset, int32 len, 30 int32 NPP_Write(NPP instance, NPStream* stream, int32 offset, int32 len,
31 void* buffer); 31 void* buffer);
32 void NPP_URLNotify(NPP instance, const char* url, NPReason reason, 32 void NPP_URLNotify(NPP instance, const char* url, NPReason reason,
33 void* notifyData); 33 void* notifyData);
34 34
35 void NPP_Print(NPP instance, NPPrint* print_info); 35 void NPP_Print(NPP instance, NPPrint* print_info);
36 36 void NPP_URLRedirectNotify(NPP instance, const char* url, int status,
37 void* notify_data);
37 } // namespace chrome_frame 38 } // namespace chrome_frame
38 39
39 #endif // CHROME_FRAME_CHROME_FRAME_NPAPI_ENTRYPOINTS_H_ 40 #endif // CHROME_FRAME_CHROME_FRAME_NPAPI_ENTRYPOINTS_H_
OLDNEW
« no previous file with comments | « chrome_frame/chrome_frame_npapi.cc ('k') | chrome_frame/chrome_frame_npapi_entrypoints.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698