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

Side by Side Diff: Source/platform/Logging.cpp

Issue 545933002: Implement HTMLMediaElement::srcObject. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Rewrite where each MediaProvider module register a converter method. Created 6 years, 3 months 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 /* 1 /*
2 * Copyright (C) 2003, 2006 Apple Computer, Inc. All rights reserved. 2 * Copyright (C) 2003, 2006 Apple Computer, Inc. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions 5 * modification, are permitted provided that the following conditions
6 * are met: 6 * are met:
7 * 1. Redistributions of source code must retain the above copyright 7 * 1. Redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer. 8 * notice, this list of conditions and the following disclaimer.
9 * 2. Redistributions in binary form must reproduce the above copyright 9 * 2. Redistributions in binary form must reproduce the above copyright
10 * notice, this list of conditions and the following disclaimer in the 10 * notice, this list of conditions and the following disclaimer in the
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after
49 WTFLogChannel LogHistory = { WTFLogChannelOff }; 49 WTFLogChannel LogHistory = { WTFLogChannelOff };
50 50
51 WTFLogChannel LogPlatformLeaks = { WTFLogChannelOff }; 51 WTFLogChannel LogPlatformLeaks = { WTFLogChannelOff };
52 WTFLogChannel LogResourceLoading = { WTFLogChannelOff }; 52 WTFLogChannel LogResourceLoading = { WTFLogChannelOff };
53 53
54 WTFLogChannel LogNetwork = { WTFLogChannelOff }; 54 WTFLogChannel LogNetwork = { WTFLogChannelOff };
55 WTFLogChannel LogFTP = { WTFLogChannelOff }; 55 WTFLogChannel LogFTP = { WTFLogChannelOff };
56 WTFLogChannel LogThreading = { WTFLogChannelOff }; 56 WTFLogChannel LogThreading = { WTFLogChannelOff };
57 WTFLogChannel LogStorageAPI = { WTFLogChannelOff }; 57 WTFLogChannel LogStorageAPI = { WTFLogChannelOff };
58 58
59 WTFLogChannel LogMedia = { WTFLogChannelOff }; 59 WTFLogChannel LogMedia = { WTFLogChannelOn };
perkj_chrome 2014/09/11 17:31:45 oops
60 WTFLogChannel LogPlugins = { WTFLogChannelOff }; 60 WTFLogChannel LogPlugins = { WTFLogChannelOff };
61 WTFLogChannel LogArchives = { WTFLogChannelOff }; 61 WTFLogChannel LogArchives = { WTFLogChannelOff };
62 WTFLogChannel LogProgress = { WTFLogChannelOff }; 62 WTFLogChannel LogProgress = { WTFLogChannelOff };
63 63
64 WTFLogChannel LogFileAPI = { WTFLogChannelOff }; 64 WTFLogChannel LogFileAPI = { WTFLogChannelOff };
65 65
66 WTFLogChannel LogWebAudio = { WTFLogChannelOff }; 66 WTFLogChannel LogWebAudio = { WTFLogChannelOff };
67 WTFLogChannel LogCompositing = { WTFLogChannelOff }; 67 WTFLogChannel LogCompositing = { WTFLogChannelOff };
68 WTFLogChannel LogGamepad = { WTFLogChannelOff }; 68 WTFLogChannel LogGamepad = { WTFLogChannelOff };
69 69
(...skipping 85 matching lines...) Expand 10 before | Expand all | Expand 10 after
155 155
156 if (equalIgnoringCase(channelName, String("Timers"))) 156 if (equalIgnoringCase(channelName, String("Timers")))
157 return &LogTimers; 157 return &LogTimers;
158 158
159 return 0; 159 return 0;
160 } 160 }
161 161
162 } 162 }
163 163
164 #endif // !LOG_DISABLED 164 #endif // !LOG_DISABLED
OLDNEW
« Source/core/html/MediaProvider.h ('K') | « Source/modules/modules.gypi ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698