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

Side by Side Diff: third_party/WebKit/Source/platform/exported/Platform.cpp

Issue 2050123002: Remove OwnPtr from Blink. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Address comments from Kent; merge. Created 4 years, 6 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) 2012 Google Inc. All rights reserved. 2 * Copyright (C) 2012 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 23 matching lines...) Expand all
34 #include "platform/MemoryCacheDumpProvider.h" 34 #include "platform/MemoryCacheDumpProvider.h"
35 #include "platform/PartitionAllocMemoryDumpProvider.h" 35 #include "platform/PartitionAllocMemoryDumpProvider.h"
36 #include "platform/fonts/FontCacheMemoryDumpProvider.h" 36 #include "platform/fonts/FontCacheMemoryDumpProvider.h"
37 #include "platform/graphics/CompositorFactory.h" 37 #include "platform/graphics/CompositorFactory.h"
38 #include "platform/heap/BlinkGCMemoryDumpProvider.h" 38 #include "platform/heap/BlinkGCMemoryDumpProvider.h"
39 #include "platform/heap/GCTaskRunner.h" 39 #include "platform/heap/GCTaskRunner.h"
40 #include "public/platform/Platform.h" 40 #include "public/platform/Platform.h"
41 #include "public/platform/ServiceRegistry.h" 41 #include "public/platform/ServiceRegistry.h"
42 #include "public/platform/WebPrerenderingSupport.h" 42 #include "public/platform/WebPrerenderingSupport.h"
43 #include "wtf/HashMap.h" 43 #include "wtf/HashMap.h"
44 #include "wtf/OwnPtr.h"
45 44
46 namespace blink { 45 namespace blink {
47 46
48 static Platform* s_platform = nullptr; 47 static Platform* s_platform = nullptr;
49 48
50 static GCTaskRunner* s_gcTaskRunner = nullptr; 49 static GCTaskRunner* s_gcTaskRunner = nullptr;
51 50
52 Platform::Platform() 51 Platform::Platform()
53 : m_mainThread(0) 52 : m_mainThread(0)
54 { 53 {
(...skipping 89 matching lines...) Expand 10 before | Expand all | Expand 10 after
144 { 143 {
145 return m_mainThread; 144 return m_mainThread;
146 } 145 }
147 146
148 ServiceRegistry* Platform::serviceRegistry() 147 ServiceRegistry* Platform::serviceRegistry()
149 { 148 {
150 return ServiceRegistry::getEmptyServiceRegistry(); 149 return ServiceRegistry::getEmptyServiceRegistry();
151 } 150 }
152 151
153 } // namespace blink 152 } // namespace blink
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698