OLD | NEW |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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 CONTENT_RENDERER_MANIFEST_MANIFEST_UMA_UTIL_H_ | 5 #ifndef CONTENT_RENDERER_MANIFEST_MANIFEST_UMA_UTIL_H_ |
6 #define CONTENT_RENDERER_MANIFEST_MANIFEST_UMA_UTIL_H_ | 6 #define CONTENT_RENDERER_MANIFEST_MANIFEST_UMA_UTIL_H_ |
7 | 7 |
8 namespace content { | 8 namespace content { |
9 | 9 |
10 struct Manifest; | 10 struct Manifest; |
(...skipping 16 matching lines...) Expand all Loading... |
27 // Record that the Manifest fetching succeeded. | 27 // Record that the Manifest fetching succeeded. |
28 static void FetchSucceeded(); | 28 static void FetchSucceeded(); |
29 | 29 |
30 // Record that the Manifest fetching failed and takes the |reason| why it | 30 // Record that the Manifest fetching failed and takes the |reason| why it |
31 // failed. | 31 // failed. |
32 static void FetchFailed(FetchFailureReason reason); | 32 static void FetchFailed(FetchFailureReason reason); |
33 }; | 33 }; |
34 | 34 |
35 } // namespace content | 35 } // namespace content |
36 | 36 |
37 #endif // CONTENT_RENDERER_MANIFEST_MANIFEST_UMA_UTIL_H_ | 37 #endif // CONTENT_RENDERER_MANIFEST_MANIFEST_UMA_UTIL_H_ |
OLD | NEW |