| OLD | NEW |
| 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 120 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 131 BLINK_EXPORT WebVector<WebDraggableRegion> draggableRegions() const; | 131 BLINK_EXPORT WebVector<WebDraggableRegion> draggableRegions() const; |
| 132 | 132 |
| 133 BLINK_EXPORT v8::Local<v8::Value> registerEmbedderCustomElement( | 133 BLINK_EXPORT v8::Local<v8::Value> registerEmbedderCustomElement( |
| 134 const WebString& name, | 134 const WebString& name, |
| 135 v8::Local<v8::Value> options, | 135 v8::Local<v8::Value> options, |
| 136 WebExceptionCode&); | 136 WebExceptionCode&); |
| 137 | 137 |
| 138 BLINK_EXPORT WebURL manifestURL() const; | 138 BLINK_EXPORT WebURL manifestURL() const; |
| 139 BLINK_EXPORT bool manifestUseCredentials() const; | 139 BLINK_EXPORT bool manifestUseCredentials() const; |
| 140 BLINK_EXPORT WebDistillabilityFeatures distillabilityFeatures(); | 140 BLINK_EXPORT WebDistillabilityFeatures distillabilityFeatures(); |
| 141 BLINK_EXPORT WebString copylessPasteMetadata(); |
| 141 | 142 |
| 142 #if BLINK_IMPLEMENTATION | 143 #if BLINK_IMPLEMENTATION |
| 143 BLINK_EXPORT WebDocument(Document*); | 144 BLINK_EXPORT WebDocument(Document*); |
| 144 BLINK_EXPORT WebDocument& operator=(Document*); | 145 BLINK_EXPORT WebDocument& operator=(Document*); |
| 145 BLINK_EXPORT operator Document*() const; | 146 BLINK_EXPORT operator Document*() const; |
| 146 #endif | 147 #endif |
| 147 }; | 148 }; |
| 148 | 149 |
| 149 DECLARE_WEB_NODE_TYPE_CASTS(WebDocument); | 150 DECLARE_WEB_NODE_TYPE_CASTS(WebDocument); |
| 150 | 151 |
| 151 } // namespace blink | 152 } // namespace blink |
| 152 | 153 |
| 153 #endif | 154 #endif |
| OLD | NEW |