| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef CHROME_BROWSER_EXTENSIONS_API_WEBREQUEST_WEBREQUEST_TIME_TRACKER_H_ | 5 #ifndef CHROME_BROWSER_EXTENSIONS_API_WEB_REQUEST_WEB_REQUEST_TIME_TRACKER_H_ |
| 6 #define CHROME_BROWSER_EXTENSIONS_API_WEBREQUEST_WEBREQUEST_TIME_TRACKER_H_ | 6 #define CHROME_BROWSER_EXTENSIONS_API_WEB_REQUEST_WEB_REQUEST_TIME_TRACKER_H_ |
| 7 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include <map> | 9 #include <map> |
| 10 #include <queue> | 10 #include <queue> |
| 11 #include <set> | 11 #include <set> |
| 12 #include <string> | 12 #include <string> |
| 13 | 13 |
| 14 #include "base/gtest_prod_util.h" | 14 #include "base/gtest_prod_util.h" |
| 15 #include "base/memory/scoped_ptr.h" | 15 #include "base/memory/scoped_ptr.h" |
| 16 #include "base/time.h" | 16 #include "base/time.h" |
| (...skipping 99 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 116 FRIEND_TEST_ALL_PREFIXES(ExtensionWebRequestTimeTrackerTest, Basic); | 116 FRIEND_TEST_ALL_PREFIXES(ExtensionWebRequestTimeTrackerTest, Basic); |
| 117 FRIEND_TEST_ALL_PREFIXES(ExtensionWebRequestTimeTrackerTest, | 117 FRIEND_TEST_ALL_PREFIXES(ExtensionWebRequestTimeTrackerTest, |
| 118 IgnoreFastRequests); | 118 IgnoreFastRequests); |
| 119 FRIEND_TEST_ALL_PREFIXES(ExtensionWebRequestTimeTrackerTest, | 119 FRIEND_TEST_ALL_PREFIXES(ExtensionWebRequestTimeTrackerTest, |
| 120 CancelOrRedirect); | 120 CancelOrRedirect); |
| 121 FRIEND_TEST_ALL_PREFIXES(ExtensionWebRequestTimeTrackerTest, Delays); | 121 FRIEND_TEST_ALL_PREFIXES(ExtensionWebRequestTimeTrackerTest, Delays); |
| 122 | 122 |
| 123 DISALLOW_COPY_AND_ASSIGN(ExtensionWebRequestTimeTracker); | 123 DISALLOW_COPY_AND_ASSIGN(ExtensionWebRequestTimeTracker); |
| 124 }; | 124 }; |
| 125 | 125 |
| 126 #endif // CHROME_BROWSER_EXTENSIONS_API_WEBREQUEST_WEBREQUEST_TIME_TRACKER_H_ | 126 #endif // CHROME_BROWSER_EXTENSIONS_API_WEB_REQUEST_WEB_REQUEST_TIME_TRACKER_H_ |
| OLD | NEW |