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

Side by Side Diff: Source/web/WebKit.cpp

Issue 1041103002: PartitionAlloc: Centralize Partition allocators into one place (Part 1) (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 8 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 | Annotate | Revision Log
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 42 matching lines...) Expand 10 before | Expand all | Expand 10 after
53 #include "platform/heap/glue/PendingGCRunner.h" 53 #include "platform/heap/glue/PendingGCRunner.h"
54 #include "platform/scheduler/Scheduler.h" 54 #include "platform/scheduler/Scheduler.h"
55 #include "public/platform/Platform.h" 55 #include "public/platform/Platform.h"
56 #include "public/platform/WebPrerenderingSupport.h" 56 #include "public/platform/WebPrerenderingSupport.h"
57 #include "public/platform/WebThread.h" 57 #include "public/platform/WebThread.h"
58 #include "web/IndexedDBClientImpl.h" 58 #include "web/IndexedDBClientImpl.h"
59 #include "web/WebMediaPlayerClientImpl.h" 59 #include "web/WebMediaPlayerClientImpl.h"
60 #include "wtf/Assertions.h" 60 #include "wtf/Assertions.h"
61 #include "wtf/CryptographicallyRandomNumber.h" 61 #include "wtf/CryptographicallyRandomNumber.h"
62 #include "wtf/MainThread.h" 62 #include "wtf/MainThread.h"
63 #include "wtf/WTF.h" 63 #include "wtf/Partitions.h"
64 #include "wtf/text/AtomicString.h" 64 #include "wtf/text/AtomicString.h"
65 #include "wtf/text/TextEncoding.h" 65 #include "wtf/text/TextEncoding.h"
66 #include <v8.h> 66 #include <v8.h>
67 67
68 namespace blink { 68 namespace blink {
69 69
70 namespace { 70 namespace {
71 71
72 class EndOfTaskRunner : public WebThread::TaskObserver { 72 class EndOfTaskRunner : public WebThread::TaskObserver {
73 public: 73 public:
(...skipping 201 matching lines...) Expand 10 before | Expand all | Expand 10 after
275 #endif // !LOG_DISABLED 275 #endif // !LOG_DISABLED
276 } 276 }
277 277
278 void resetPluginCache(bool reloadPages) 278 void resetPluginCache(bool reloadPages)
279 { 279 {
280 ASSERT(!reloadPages); 280 ASSERT(!reloadPages);
281 Page::refreshPlugins(); 281 Page::refreshPlugins();
282 } 282 }
283 283
284 } // namespace blink 284 } // namespace blink
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698