| 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 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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 Loading... |
| 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 |
| OLD | NEW |