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

Side by Side Diff: Source/core/timing/PerformanceBase.h

Issue 1165383002: Oilpan: Build fix after r196724 (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 6 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 | Annotate | Revision Log
« no previous file with comments | « Source/core/timing/Performance.h ('k') | Source/modules/performance/WorkerPerformance.h » ('j') | 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 * Copyright (C) 2012 Intel Inc. All rights reserved. 3 * Copyright (C) 2012 Intel Inc. All rights reserved.
4 * 4 *
5 * Redistribution and use in source and binary forms, with or without 5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions are 6 * modification, are permitted provided that the following conditions are
7 * met: 7 * met:
8 * 8 *
9 * * Redistributions of source code must retain the above copyright 9 * * Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer. 10 * notice, this list of conditions and the following disclaimer.
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after
45 class Document; 45 class Document;
46 class ExceptionState; 46 class ExceptionState;
47 class PerformanceTiming; 47 class PerformanceTiming;
48 class ResourceTimingInfo; 48 class ResourceTimingInfo;
49 class UserTiming; 49 class UserTiming;
50 50
51 using PerformanceEntryVector = HeapVector<Member<PerformanceEntry>>; 51 using PerformanceEntryVector = HeapVector<Member<PerformanceEntry>>;
52 52
53 class CORE_EXPORT PerformanceBase : public RefCountedGarbageCollectedEventTarget WithInlineData<PerformanceBase> { 53 class CORE_EXPORT PerformanceBase : public RefCountedGarbageCollectedEventTarget WithInlineData<PerformanceBase> {
54 REFCOUNTED_GARBAGE_COLLECTED_EVENT_TARGET(PerformanceBase); 54 REFCOUNTED_GARBAGE_COLLECTED_EVENT_TARGET(PerformanceBase);
55 WILL_BE_USING_GARBAGE_COLLECTED_MIXIN(PerformanceBase);
56 public: 55 public:
57 virtual ~PerformanceBase(); 56 virtual ~PerformanceBase();
58 57
59 virtual const AtomicString& interfaceName() const override; 58 virtual const AtomicString& interfaceName() const override;
60 59
61 virtual PerformanceTiming* timing() const; 60 virtual PerformanceTiming* timing() const;
62 double now() const; 61 double now() const;
63 62
64 double timeOrigin() const { return m_timeOrigin; } 63 double timeOrigin() const { return m_timeOrigin; }
65 64
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after
104 PerformanceEntryVector m_resourceTimingBuffer; 103 PerformanceEntryVector m_resourceTimingBuffer;
105 unsigned m_resourceTimingBufferSize; 104 unsigned m_resourceTimingBufferSize;
106 double m_timeOrigin; 105 double m_timeOrigin;
107 106
108 Member<UserTiming> m_userTiming; 107 Member<UserTiming> m_userTiming;
109 }; 108 };
110 109
111 } // namespace blink 110 } // namespace blink
112 111
113 #endif // PerformanceBase_h 112 #endif // PerformanceBase_h
OLDNEW
« no previous file with comments | « Source/core/timing/Performance.h ('k') | Source/modules/performance/WorkerPerformance.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698