| 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 394 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 636 protected: | 636 protected: |
| 637 Platform(); | 637 Platform(); |
| 638 virtual ~Platform() { } | 638 virtual ~Platform() { } |
| 639 | 639 |
| 640 WebThread* m_mainThread; | 640 WebThread* m_mainThread; |
| 641 }; | 641 }; |
| 642 | 642 |
| 643 } // namespace blink | 643 } // namespace blink |
| 644 | 644 |
| 645 #endif | 645 #endif |
| OLD | NEW |