Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(177)

Side by Side Diff: Source/core/fileapi/FileReader.cpp

Issue 409433002: Remove unused threading includes from FileReader. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698