| OLD | NEW |
| (Empty) |
| 1 /* | |
| 2 * Copyright (C) 2010 Google Inc. All rights reserved. | |
| 3 * | |
| 4 * Redistribution and use in source and binary forms, with or without | |
| 5 * modification, are permitted provided that the following conditions are | |
| 6 * met: | |
| 7 * | |
| 8 * * Redistributions of source code must retain the above copyright | |
| 9 * notice, this list of conditions and the following disclaimer. | |
| 10 * * Redistributions in binary form must reproduce the above | |
| 11 * copyright notice, this list of conditions and the following disclaimer | |
| 12 * in the documentation and/or other materials provided with the | |
| 13 * distribution. | |
| 14 * * Neither the name of Google Inc. nor the names of its | |
| 15 * contributors may be used to endorse or promote products derived from | |
| 16 * this software without specific prior written permission. | |
| 17 * | |
| 18 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS | |
| 19 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT | |
| 20 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR | |
| 21 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT | |
| 22 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, | |
| 23 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT | |
| 24 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, | |
| 25 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY | |
| 26 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | |
| 27 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE | |
| 28 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | |
| 29 */ | |
| 30 | |
| 31 #include "config.h" | |
| 32 #include "public/web/WebPerformance.h" | |
| 33 | |
| 34 namespace blink { | |
| 35 | |
| 36 void WebPerformance::reset() | |
| 37 { | |
| 38 } | |
| 39 | |
| 40 void WebPerformance::assign(const WebPerformance& other) | |
| 41 { | |
| 42 } | |
| 43 | |
| 44 WebNavigationType WebPerformance::navigationType() const | |
| 45 { | |
| 46 return WebNavigationTypeOther; | |
| 47 } | |
| 48 | |
| 49 double WebPerformance::navigationStart() const | |
| 50 { | |
| 51 return 0; | |
| 52 } | |
| 53 | |
| 54 double WebPerformance::unloadEventEnd() const | |
| 55 { | |
| 56 return 0; | |
| 57 } | |
| 58 | |
| 59 double WebPerformance::redirectStart() const | |
| 60 { | |
| 61 return 0; | |
| 62 } | |
| 63 | |
| 64 double WebPerformance::redirectEnd() const | |
| 65 { | |
| 66 return 0; | |
| 67 } | |
| 68 | |
| 69 unsigned short WebPerformance::redirectCount() const | |
| 70 { | |
| 71 return 0; | |
| 72 } | |
| 73 | |
| 74 double WebPerformance::fetchStart() const | |
| 75 { | |
| 76 return 0; | |
| 77 } | |
| 78 | |
| 79 double WebPerformance::domainLookupStart() const | |
| 80 { | |
| 81 return 0; | |
| 82 } | |
| 83 | |
| 84 double WebPerformance::domainLookupEnd() const | |
| 85 { | |
| 86 return 0; | |
| 87 } | |
| 88 | |
| 89 double WebPerformance::connectStart() const | |
| 90 { | |
| 91 return 0; | |
| 92 } | |
| 93 | |
| 94 double WebPerformance::connectEnd() const | |
| 95 { | |
| 96 return 0; | |
| 97 } | |
| 98 | |
| 99 double WebPerformance::requestStart() const | |
| 100 { | |
| 101 return 0; | |
| 102 } | |
| 103 | |
| 104 double WebPerformance::responseStart() const | |
| 105 { | |
| 106 return 0; | |
| 107 } | |
| 108 | |
| 109 double WebPerformance::responseEnd() const | |
| 110 { | |
| 111 return 0; | |
| 112 } | |
| 113 | |
| 114 double WebPerformance::domLoading() const | |
| 115 { | |
| 116 return 0; | |
| 117 } | |
| 118 | |
| 119 double WebPerformance::domInteractive() const | |
| 120 { | |
| 121 return 0; | |
| 122 } | |
| 123 | |
| 124 double WebPerformance::domContentLoadedEventStart() const | |
| 125 { | |
| 126 return 0; | |
| 127 } | |
| 128 | |
| 129 double WebPerformance::domContentLoadedEventEnd() const | |
| 130 { | |
| 131 return 0; | |
| 132 } | |
| 133 | |
| 134 double WebPerformance::domComplete() const | |
| 135 { | |
| 136 return 0; | |
| 137 } | |
| 138 | |
| 139 double WebPerformance::loadEventStart() const | |
| 140 { | |
| 141 return 0; | |
| 142 } | |
| 143 | |
| 144 double WebPerformance::loadEventEnd() const | |
| 145 { | |
| 146 return 0; | |
| 147 } | |
| 148 | |
| 149 } // namespace blink | |
| OLD | NEW |