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

Side by Side Diff: content/app/content_main_runner.cc

Issue 10869073: Split user agent code out of the 'glue' target (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase to trunk Created 8 years, 3 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
« no previous file with comments | « content/app/android/content_main.cc ('k') | content/browser/android/content_settings.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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/user_agent/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
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
OLDNEW
« no previous file with comments | « content/app/android/content_main.cc ('k') | content/browser/android/content_settings.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698