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

Side by Side Diff: public/web/WebBindings.h

Issue 776693002: Clean forward declaration in public (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: fix fakewebplugin Created 6 years 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 | « public/web/WebArrayBuffer.h ('k') | public/web/WebDataSource.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 /* 1 /*
2 * Copyright (C) 2009 Google Inc. All rights reserved. 2 * Copyright (C) 2009 Google Inc. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions are 5 * modification, are permitted provided that the following conditions are
6 * met: 6 * met:
7 * 7 *
8 * * Redistributions of source code must retain the above copyright 8 * * Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 9 * notice, this list of conditions and the following disclaimer.
10 * * Redistributions in binary form must reproduce the above 10 * * Redistributions in binary form must reproduce the above
(...skipping 28 matching lines...) Expand all
39 namespace v8 { 39 namespace v8 {
40 class Value; 40 class Value;
41 template <class T> class Handle; 41 template <class T> class Handle;
42 template <class T> class Local; 42 template <class T> class Local;
43 } 43 }
44 44
45 namespace blink { 45 namespace blink {
46 46
47 class WebArrayBuffer; 47 class WebArrayBuffer;
48 class WebArrayBufferView; 48 class WebArrayBufferView;
49 class WebDragData;
50 class WebElement; 49 class WebElement;
51 class WebNode; 50 class WebNode;
52 class WebRange; 51 class WebRange;
53 52
54 // A haphazard collection of functions for dealing with plugins. 53 // A haphazard collection of functions for dealing with plugins.
55 class WebBindings { 54 class WebBindings {
56 public: 55 public:
57 // NPN Functions ------------------------------------------------------ 56 // NPN Functions ------------------------------------------------------
58 // These are all defined in npruntime.h and are well documented. 57 // These are all defined in npruntime.h and are well documented.
59 58
(...skipping 125 matching lines...) Expand 10 before | Expand all | Expand 10 after
185 BLINK_EXPORT static void popExceptionHandler(); 184 BLINK_EXPORT static void popExceptionHandler();
186 185
187 // Conversion utilities to/from V8 native objects and NPVariant wrappers. 186 // Conversion utilities to/from V8 native objects and NPVariant wrappers.
188 BLINK_EXPORT static void toNPVariant(v8::Local<v8::Value>, NPObject* root, N PVariant* result); 187 BLINK_EXPORT static void toNPVariant(v8::Local<v8::Value>, NPObject* root, N PVariant* result);
189 BLINK_EXPORT static v8::Handle<v8::Value> toV8Value(const NPVariant*); 188 BLINK_EXPORT static v8::Handle<v8::Value> toV8Value(const NPVariant*);
190 }; 189 };
191 190
192 } // namespace blink 191 } // namespace blink
193 192
194 #endif 193 #endif
OLDNEW
« no previous file with comments | « public/web/WebArrayBuffer.h ('k') | public/web/WebDataSource.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698