| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "content/public/app/content_main_runner.h" | 5 #include "content/public/app/content_main_runner.h" |
| 6 | 6 |
| 7 #include <stdlib.h> | 7 #include <stdlib.h> |
| 8 | 8 |
| 9 #include "base/allocator/allocator_extension.h" | 9 #include "base/allocator/allocator_extension.h" |
| 10 #include "base/at_exit.h" | 10 #include "base/at_exit.h" |
| (...skipping 26 matching lines...) Expand all Loading... |
| 37 #include "content/public/plugin/content_plugin_client.h" | 37 #include "content/public/plugin/content_plugin_client.h" |
| 38 #include "content/public/renderer/content_renderer_client.h" | 38 #include "content/public/renderer/content_renderer_client.h" |
| 39 #include "content/public/utility/content_utility_client.h" | 39 #include "content/public/utility/content_utility_client.h" |
| 40 #include "crypto/nss_util.h" | 40 #include "crypto/nss_util.h" |
| 41 #include "ipc/ipc_switches.h" | 41 #include "ipc/ipc_switches.h" |
| 42 #include "media/base/media.h" | 42 #include "media/base/media.h" |
| 43 #include "sandbox/win/src/sandbox_types.h" | 43 #include "sandbox/win/src/sandbox_types.h" |
| 44 #include "ui/base/ui_base_switches.h" | 44 #include "ui/base/ui_base_switches.h" |
| 45 #include "ui/base/ui_base_paths.h" | 45 #include "ui/base/ui_base_paths.h" |
| 46 #include "ui/base/win/dpi.h" | 46 #include "ui/base/win/dpi.h" |
| 47 #include "webkit/glue/webkit_glue.h" | 47 #include "webkit/glue/user_agent.h" |
| 48 | 48 |
| 49 #if defined(USE_TCMALLOC) | 49 #if defined(USE_TCMALLOC) |
| 50 #include "third_party/tcmalloc/chromium/src/gperftools/malloc_extension.h" | 50 #include "third_party/tcmalloc/chromium/src/gperftools/malloc_extension.h" |
| 51 #endif | 51 #endif |
| 52 | 52 |
| 53 #if defined(OS_WIN) | 53 #if defined(OS_WIN) |
| 54 #include <cstring> | 54 #include <cstring> |
| 55 #include <atlbase.h> | 55 #include <atlbase.h> |
| 56 #include <atlapp.h> | 56 #include <atlapp.h> |
| 57 #include <malloc.h> | 57 #include <malloc.h> |
| (...skipping 651 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 709 | 709 |
| 710 DISALLOW_COPY_AND_ASSIGN(ContentMainRunnerImpl); | 710 DISALLOW_COPY_AND_ASSIGN(ContentMainRunnerImpl); |
| 711 }; | 711 }; |
| 712 | 712 |
| 713 // static | 713 // static |
| 714 ContentMainRunner* ContentMainRunner::Create() { | 714 ContentMainRunner* ContentMainRunner::Create() { |
| 715 return new ContentMainRunnerImpl(); | 715 return new ContentMainRunnerImpl(); |
| 716 } | 716 } |
| 717 | 717 |
| 718 } // namespace content | 718 } // namespace content |
| OLD | NEW |