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

Side by Side Diff: third_party/WebKit/Source/core/timing/PerformanceRenderTiming.h

Issue 1853743005: Oilpan: Remove WillBe types (part 13) (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 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) 2015 Google Inc. All rights reserved. 2 * Copyright (C) 2015 Google Inc. All rights reserved.
3 * Copyright (C) 2015 Intel Inc. All rights reserved. 3 * Copyright (C) 2015 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 43 matching lines...) Expand 10 before | Expand all | Expand 10 after
54 DECLARE_VIRTUAL_TRACE(); 54 DECLARE_VIRTUAL_TRACE();
55 55
56 protected: 56 protected:
57 void buildJSONValue(V8ObjectBuilder&) const override; 57 void buildJSONValue(V8ObjectBuilder&) const override;
58 58
59 private: 59 private:
60 PerformanceRenderTiming(Document* requestingDocument, unsigned sourceFrame, double startTime, double finishTime); 60 PerformanceRenderTiming(Document* requestingDocument, unsigned sourceFrame, double startTime, double finishTime);
61 ~PerformanceRenderTiming() override; 61 ~PerformanceRenderTiming() override;
62 62
63 unsigned m_sourceFrame; 63 unsigned m_sourceFrame;
64 RefPtrWillBeMember<Document> m_requestingDocument; 64 Member<Document> m_requestingDocument;
65 }; 65 };
66 66
67 } // namespace blink 67 } // namespace blink
68 68
69 #endif // PerformanceRenderTiming_h 69 #endif // PerformanceRenderTiming_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698