OLD | NEW |
1 /* | 1 /* |
2 Copyright (C) 1998 Lars Knoll (knoll@mpi-hd.mpg.de) | 2 Copyright (C) 1998 Lars Knoll (knoll@mpi-hd.mpg.de) |
3 Copyright (C) 2001 Dirk Mueller (mueller@kde.org) | 3 Copyright (C) 2001 Dirk Mueller (mueller@kde.org) |
4 Copyright (C) 2002 Waldo Bastian (bastian@kde.org) | 4 Copyright (C) 2002 Waldo Bastian (bastian@kde.org) |
5 Copyright (C) 2006 Samuel Weinig (sam.weinig@gmail.com) | 5 Copyright (C) 2006 Samuel Weinig (sam.weinig@gmail.com) |
6 Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Apple Inc. All
rights reserved. | 6 Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Apple Inc. All
rights reserved. |
7 | 7 |
8 This library is free software; you can redistribute it and/or | 8 This library is free software; you can redistribute it and/or |
9 modify it under the terms of the GNU Library General Public | 9 modify it under the terms of the GNU Library General Public |
10 License as published by the Free Software Foundation; either | 10 License as published by the Free Software Foundation; either |
(...skipping 890 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
901 case Resource::LinkPrefetch: | 901 case Resource::LinkPrefetch: |
902 return "LinkPrefetch"; | 902 return "LinkPrefetch"; |
903 case Resource::LinkSubresource: | 903 case Resource::LinkSubresource: |
904 return "LinkSubresource"; | 904 return "LinkSubresource"; |
905 case Resource::TextTrack: | 905 case Resource::TextTrack: |
906 return "TextTrack"; | 906 return "TextTrack"; |
907 case Resource::Shader: | 907 case Resource::Shader: |
908 return "Shader"; | 908 return "Shader"; |
909 case Resource::ImportResource: | 909 case Resource::ImportResource: |
910 return "ImportResource"; | 910 return "ImportResource"; |
| 911 case Resource::Media: |
| 912 return "Media"; |
911 } | 913 } |
912 ASSERT_NOT_REACHED(); | 914 ASSERT_NOT_REACHED(); |
913 return "Unknown"; | 915 return "Unknown"; |
914 } | 916 } |
915 #endif // !LOG_DISABLED | 917 #endif // !LOG_DISABLED |
916 | 918 |
917 } | 919 } |
OLD | NEW |