| 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 "public/platform/WebURL.h" | 40 #include "public/platform/WebURL.h" |
| 41 #include "wtf/CurrentTime.h" | 41 #include "wtf/CurrentTime.h" |
| 42 | 42 |
| 43 namespace blink { | 43 namespace blink { |
| 44 | 44 |
| 45 static const int kMaxRecursionDepth = 3; | 45 static const int kMaxRecursionDepth = 3; |
| 46 static const double progressNotificationIntervalMS = 50; | 46 static const double progressNotificationIntervalMS = 50; |
| 47 | 47 |
| 48 FileWriter* FileWriter::create(ExecutionContext* context) | 48 FileWriter* FileWriter::create(ExecutionContext* context) |
| 49 { | 49 { |
| 50 FileWriter* fileWriter = adoptRefCountedGarbageCollectedWillBeNoop(new FileW
riter(context)); | 50 FileWriter* fileWriter = new FileWriter(context); |
| 51 fileWriter->suspendIfNeeded(); | 51 fileWriter->suspendIfNeeded(); |
| 52 return fileWriter; | 52 return fileWriter; |
| 53 } | 53 } |
| 54 | 54 |
| 55 FileWriter::FileWriter(ExecutionContext* context) | 55 FileWriter::FileWriter(ExecutionContext* context) |
| 56 : ActiveDOMObject(context) | 56 : ActiveDOMObject(context) |
| 57 , m_readyState(INIT) | 57 , m_readyState(INIT) |
| 58 , m_operationInProgress(OperationNone) | 58 , m_operationInProgress(OperationNone) |
| 59 , m_queuedOperation(OperationNone) | 59 , m_queuedOperation(OperationNone) |
| 60 , m_bytesWritten(0) | 60 , m_bytesWritten(0) |
| (...skipping 265 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 326 | 326 |
| 327 void FileWriter::trace(Visitor* visitor) | 327 void FileWriter::trace(Visitor* visitor) |
| 328 { | 328 { |
| 329 visitor->trace(m_error); | 329 visitor->trace(m_error); |
| 330 visitor->trace(m_blobBeingWritten); | 330 visitor->trace(m_blobBeingWritten); |
| 331 FileWriterBase::trace(visitor); | 331 FileWriterBase::trace(visitor); |
| 332 EventTargetWithInlineData::trace(visitor); | 332 EventTargetWithInlineData::trace(visitor); |
| 333 } | 333 } |
| 334 | 334 |
| 335 } // namespace blink | 335 } // namespace blink |
| OLD | NEW |