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

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

Issue 2772613002: [instrumentation] Rename InspectorInstrumentation into CoreProbes (Closed)
Patch Set: fix typo Created 3 years, 8 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
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 21 matching lines...) Expand all
32 32
33 #include "bindings/core/v8/ExceptionState.h" 33 #include "bindings/core/v8/ExceptionState.h"
34 #include "bindings/core/v8/StringOrArrayBuffer.h" 34 #include "bindings/core/v8/StringOrArrayBuffer.h"
35 #include "core/dom/DOMArrayBuffer.h" 35 #include "core/dom/DOMArrayBuffer.h"
36 #include "core/dom/Document.h" 36 #include "core/dom/Document.h"
37 #include "core/dom/ExceptionCode.h" 37 #include "core/dom/ExceptionCode.h"
38 #include "core/dom/ExecutionContext.h" 38 #include "core/dom/ExecutionContext.h"
39 #include "core/dom/TaskRunnerHelper.h" 39 #include "core/dom/TaskRunnerHelper.h"
40 #include "core/events/ProgressEvent.h" 40 #include "core/events/ProgressEvent.h"
41 #include "core/fileapi/File.h" 41 #include "core/fileapi/File.h"
42 #include "core/inspector/InspectorInstrumentation.h" 42 #include "core/probe/CoreProbes.h"
43 #include "platform/Supplementable.h" 43 #include "platform/Supplementable.h"
44 #include "wtf/AutoReset.h" 44 #include "wtf/AutoReset.h"
45 #include "wtf/CurrentTime.h" 45 #include "wtf/CurrentTime.h"
46 #include "wtf/Deque.h" 46 #include "wtf/Deque.h"
47 #include "wtf/HashSet.h" 47 #include "wtf/HashSet.h"
48 #include "wtf/text/CString.h" 48 #include "wtf/text/CString.h"
49 49
50 namespace blink { 50 namespace blink {
51 51
52 namespace { 52 namespace {
(...skipping 413 matching lines...) Expand 10 before | Expand all | Expand 10 after
466 ProgressEvent::create(type, false, m_loader->bytesLoaded(), 0)); 466 ProgressEvent::create(type, false, m_loader->bytesLoaded(), 0));
467 } 467 }
468 468
469 DEFINE_TRACE(FileReader) { 469 DEFINE_TRACE(FileReader) {
470 visitor->trace(m_error); 470 visitor->trace(m_error);
471 EventTargetWithInlineData::trace(visitor); 471 EventTargetWithInlineData::trace(visitor);
472 ContextLifecycleObserver::trace(visitor); 472 ContextLifecycleObserver::trace(visitor);
473 } 473 }
474 474
475 } // namespace blink 475 } // namespace blink
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/core/events/GenericEventQueue.cpp ('k') | third_party/WebKit/Source/core/frame/DOMTimer.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698