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

Side by Side Diff: sky/engine/core/Init.cpp

Issue 889823002: Remove TRACE_EVENT indirection through blink::Platform (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 5 years, 10 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/bindings/core/v8/V8GCController.cpp ('k') | sky/engine/core/core.gni » ('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) 2013 Google Inc. All rights reserved. 2 * Copyright (C) 2013 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 "gen/sky/core/EventNames.h" 34 #include "gen/sky/core/EventNames.h"
35 #include "gen/sky/core/EventTargetNames.h" 35 #include "gen/sky/core/EventTargetNames.h"
36 #include "gen/sky/core/EventTypeNames.h" 36 #include "gen/sky/core/EventTypeNames.h"
37 #include "gen/sky/core/FetchInitiatorTypeNames.h" 37 #include "gen/sky/core/FetchInitiatorTypeNames.h"
38 #include "gen/sky/core/HTMLNames.h" 38 #include "gen/sky/core/HTMLNames.h"
39 #include "gen/sky/core/MediaFeatureNames.h" 39 #include "gen/sky/core/MediaFeatureNames.h"
40 #include "gen/sky/core/MediaTypeNames.h" 40 #include "gen/sky/core/MediaTypeNames.h"
41 #include "gen/sky/platform/FontFamilyNames.h" 41 #include "gen/sky/platform/FontFamilyNames.h"
42 #include "sky/engine/core/dom/Document.h" 42 #include "sky/engine/core/dom/Document.h"
43 #include "sky/engine/core/html/parser/HTMLParserThread.h" 43 #include "sky/engine/core/html/parser/HTMLParserThread.h"
44 #include "sky/engine/platform/EventTracer.h"
45 #include "sky/engine/platform/Partitions.h" 44 #include "sky/engine/platform/Partitions.h"
46 #include "sky/engine/platform/PlatformThreadData.h" 45 #include "sky/engine/platform/PlatformThreadData.h"
47 #include "sky/engine/wtf/text/StringStatics.h" 46 #include "sky/engine/wtf/text/StringStatics.h"
48 47
49 namespace blink { 48 namespace blink {
50 49
51 void CoreInitializer::init() 50 void CoreInitializer::init()
52 { 51 {
53 ASSERT(!m_isInited); 52 ASSERT(!m_isInited);
54 m_isInited = true; 53 m_isInited = true;
(...skipping 24 matching lines...) Expand all
79 HTMLParserThread::start(); 78 HTMLParserThread::start();
80 } 79 }
81 80
82 void CoreInitializer::shutdown() 81 void CoreInitializer::shutdown()
83 { 82 {
84 HTMLParserThread::stop(); 83 HTMLParserThread::stop();
85 Partitions::shutdown(); 84 Partitions::shutdown();
86 } 85 }
87 86
88 } // namespace blink 87 } // namespace blink
OLDNEW
« no previous file with comments | « sky/engine/bindings/core/v8/V8GCController.cpp ('k') | sky/engine/core/core.gni » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698