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

Side by Side Diff: Source/bindings/core/dart/DartInspectorTimeline.h

Issue 1532413002: Added Dartium changes onto 45.0.2454.104 (Closed) Base URL: http://src.chromium.org/blink/branches/chromium/2454
Patch Set: Created 5 years 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 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2012, Google Inc.
2 // 2 // All rights reserved.
3 // The Chromium Authors can be found at
4 // http://src.chromium.org/svn/trunk/src/AUTHORS
5 // 3 //
6 // Redistribution and use in source and binary forms, with or without 4 // Redistribution and use in source and binary forms, with or without
7 // modification, are permitted provided that the following conditions are 5 // modification, are permitted provided that the following conditions are
8 // met: 6 // met:
9 // 7 //
10 // * Redistributions of source code must retain the above copyright 8 // * Redistributions of source code must retain the above copyright
11 // notice, this list of conditions and the following disclaimer. 9 // notice, this list of conditions and the following disclaimer.
12 // * Redistributions in binary form must reproduce the above 10 // * Redistributions in binary form must reproduce the above
13 // copyright notice, this list of conditions and the following disclaimer 11 // copyright notice, this list of conditions and the following disclaimer
14 // in the documentation and/or other materials provided with the 12 // in the documentation and/or other materials provided with the
15 // distribution. 13 // distribution.
16 // * Neither the name of Google Inc. nor the names of its 14 // * Neither the name of Google Inc. nor the names of its
17 // contributors may be used to endorse or promote products derived from 15 // contributors may be used to endorse or promote products derived from
18 // this software without specific prior written permission. 16 // this software without specific prior written permission.
19 // 17 //
20 // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 18 // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
21 // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT 19 // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
22 // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR 20 // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
23 // A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT 21 // A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
24 // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, 22 // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
25 // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT 23 // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
26 // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, 24 // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
27 // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 25 // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
28 // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 26 // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
29 // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 27 // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
30 // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 28 // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
29
30 #ifndef DartInspectorTimeline_h
31 #define DartInspectorTimeline_h
32
33 #include "core/inspector/InspectorInstrumentation.h"
34
35 namespace blink {
36
37 class Timeline {
38 public:
39 Timeline(LocalFrame* frame, const String& tag)
40 : m_cookie(InspectorInstrumentation::willEvaluateScript(frame, tag, 0))
41 {
42 }
43
44 ~Timeline()
45 {
46 InspectorInstrumentation::didEvaluateScript(m_cookie);
47 }
48
49 private:
50 const InspectorInstrumentationCookie m_cookie;
51 };
52
53 }
54
55 #endif
OLDNEW
« no previous file with comments | « Source/bindings/core/dart/DartInspectorRuntimeAgent.cpp ('k') | Source/bindings/core/dart/DartIsolateDestructionObserver.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698