| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2010 Google Inc. All rights reserved. | 2 * Copyright (C) 2010 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 29 matching lines...) Expand all Loading... |
| 40 #include "core/fileapi/File.h" | 40 #include "core/fileapi/File.h" |
| 41 #include "core/frame/LocalFrame.h" | 41 #include "core/frame/LocalFrame.h" |
| 42 #include "core/workers/WorkerClients.h" | 42 #include "core/workers/WorkerClients.h" |
| 43 #include "core/workers/WorkerGlobalScope.h" | 43 #include "core/workers/WorkerGlobalScope.h" |
| 44 #include "platform/Logging.h" | 44 #include "platform/Logging.h" |
| 45 #include "platform/Supplementable.h" | 45 #include "platform/Supplementable.h" |
| 46 #include "wtf/ArrayBuffer.h" | 46 #include "wtf/ArrayBuffer.h" |
| 47 #include "wtf/CurrentTime.h" | 47 #include "wtf/CurrentTime.h" |
| 48 #include "wtf/Deque.h" | 48 #include "wtf/Deque.h" |
| 49 #include "wtf/HashSet.h" | 49 #include "wtf/HashSet.h" |
| 50 #include "wtf/ThreadSpecific.h" | |
| 51 #include "wtf/Threading.h" | |
| 52 #include "wtf/text/CString.h" | 50 #include "wtf/text/CString.h" |
| 53 | 51 |
| 54 namespace blink { | 52 namespace blink { |
| 55 | 53 |
| 56 namespace { | 54 namespace { |
| 57 | 55 |
| 58 #if !LOG_DISABLED | 56 #if !LOG_DISABLED |
| 59 const CString utf8BlobUUID(Blob* blob) | 57 const CString utf8BlobUUID(Blob* blob) |
| 60 { | 58 { |
| 61 return blob->uuid().utf8(); | 59 return blob->uuid().utf8(); |
| (...skipping 425 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 487 return m_loader->stringResult(); | 485 return m_loader->stringResult(); |
| 488 } | 486 } |
| 489 | 487 |
| 490 void FileReader::trace(Visitor* visitor) | 488 void FileReader::trace(Visitor* visitor) |
| 491 { | 489 { |
| 492 visitor->trace(m_error); | 490 visitor->trace(m_error); |
| 493 EventTargetWithInlineData::trace(visitor); | 491 EventTargetWithInlineData::trace(visitor); |
| 494 } | 492 } |
| 495 | 493 |
| 496 } // namespace blink | 494 } // namespace blink |
| OLD | NEW |