| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2009 Google Inc. All rights reserved. | 2 * Copyright (C) 2009 Google 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 are | 5 * modification, are permitted provided that the following conditions are |
| 6 * met: | 6 * met: |
| 7 * | 7 * |
| 8 * * Redistributions of source code must retain the above copyright | 8 * * Redistributions of source code must retain the above copyright |
| 9 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
| 10 * * Redistributions in binary form must reproduce the above | 10 * * Redistributions in binary form must reproduce the above |
| (...skipping 30 matching lines...) Expand all Loading... |
| 41 #include "core/frame/Settings.h" | 41 #include "core/frame/Settings.h" |
| 42 #include "core/page/Page.h" | 42 #include "core/page/Page.h" |
| 43 #include "gin/public/v8_platform.h" | 43 #include "gin/public/v8_platform.h" |
| 44 #include "mojo/common/message_pump_mojo.h" | 44 #include "mojo/common/message_pump_mojo.h" |
| 45 #include "platform/LayoutTestSupport.h" | 45 #include "platform/LayoutTestSupport.h" |
| 46 #include "platform/Logging.h" | 46 #include "platform/Logging.h" |
| 47 #include "platform/RuntimeEnabledFeatures.h" | 47 #include "platform/RuntimeEnabledFeatures.h" |
| 48 #include "platform/graphics/ImageDecodingStore.h" | 48 #include "platform/graphics/ImageDecodingStore.h" |
| 49 #include "platform/graphics/media/MediaPlayer.h" | 49 #include "platform/graphics/media/MediaPlayer.h" |
| 50 #include "platform/heap/Heap.h" | 50 #include "platform/heap/Heap.h" |
| 51 #include "platform/heap/glue/MessageLoopInterruptor.h" | |
| 52 #include "public/platform/Platform.h" | 51 #include "public/platform/Platform.h" |
| 53 #include "web/WebMediaPlayerClientImpl.h" | 52 #include "web/WebMediaPlayerClientImpl.h" |
| 54 #include "wtf/Assertions.h" | 53 #include "wtf/Assertions.h" |
| 55 #include "wtf/CryptographicallyRandomNumber.h" | 54 #include "wtf/CryptographicallyRandomNumber.h" |
| 56 #include "wtf/MainThread.h" | 55 #include "wtf/MainThread.h" |
| 57 #include "wtf/WTF.h" | 56 #include "wtf/WTF.h" |
| 58 #include "wtf/text/AtomicString.h" | 57 #include "wtf/text/AtomicString.h" |
| 59 #include "wtf/text/TextEncoding.h" | 58 #include "wtf/text/TextEncoding.h" |
| 60 #include <v8.h> | 59 #include <v8.h> |
| 61 | 60 |
| (...skipping 176 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 238 void enableLogChannel(const char* name) | 237 void enableLogChannel(const char* name) |
| 239 { | 238 { |
| 240 #if !LOG_DISABLED | 239 #if !LOG_DISABLED |
| 241 WTFLogChannel* channel = getChannelFromName(name); | 240 WTFLogChannel* channel = getChannelFromName(name); |
| 242 if (channel) | 241 if (channel) |
| 243 channel->state = WTFLogChannelOn; | 242 channel->state = WTFLogChannelOn; |
| 244 #endif // !LOG_DISABLED | 243 #endif // !LOG_DISABLED |
| 245 } | 244 } |
| 246 | 245 |
| 247 } // namespace blink | 246 } // namespace blink |
| OLD | NEW |