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

Side by Side Diff: sky/engine/web/WebKit.cpp

Issue 673033002: Remove WebThread (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: Created 6 years, 2 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
« no previous file with comments | « sky/engine/testing/platform/webthread_impl.cc ('k') | sky/viewer/BUILD.gn » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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
OLDNEW
« no previous file with comments | « sky/engine/testing/platform/webthread_impl.cc ('k') | sky/viewer/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698