OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2012 Google Inc. All rights reserved. | 2 * Copyright (C) 2012 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 210 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
221 // FileSystem ---------------------------------------------------------- | 221 // FileSystem ---------------------------------------------------------- |
222 | 222 |
223 // Must return non-null. | 223 // Must return non-null. |
224 virtual WebFileSystem* fileSystem() { return nullptr; } | 224 virtual WebFileSystem* fileSystem() { return nullptr; } |
225 | 225 |
226 // Return a filename-friendly identifier for an origin. | 226 // Return a filename-friendly identifier for an origin. |
227 virtual WebString fileSystemCreateOriginIdentifier(const WebSecurityOrigin&
origin) { return WebString(); } | 227 virtual WebString fileSystemCreateOriginIdentifier(const WebSecurityOrigin&
origin) { return WebString(); } |
228 | 228 |
229 // IDN conversion ------------------------------------------------------ | 229 // IDN conversion ------------------------------------------------------ |
230 | 230 |
231 virtual WebString convertIDNToUnicode(const WebString& host, const WebString
& languages) { return host; } | 231 virtual WebString convertIDNToUnicode(const WebString& host) { return host;
} |
232 | 232 |
233 | 233 |
234 // IndexedDB ---------------------------------------------------------- | 234 // IndexedDB ---------------------------------------------------------- |
235 | 235 |
236 // Must return non-null. | 236 // Must return non-null. |
237 virtual WebIDBFactory* idbFactory() { return nullptr; } | 237 virtual WebIDBFactory* idbFactory() { return nullptr; } |
238 | 238 |
239 | 239 |
240 // Cache Storage ---------------------------------------------------------- | 240 // Cache Storage ---------------------------------------------------------- |
241 | 241 |
(...skipping 383 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
625 protected: | 625 protected: |
626 Platform(); | 626 Platform(); |
627 virtual ~Platform() { } | 627 virtual ~Platform() { } |
628 | 628 |
629 WebThread* m_mainThread; | 629 WebThread* m_mainThread; |
630 }; | 630 }; |
631 | 631 |
632 } // namespace blink | 632 } // namespace blink |
633 | 633 |
634 #endif | 634 #endif |
OLD | NEW |