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

Side by Side Diff: chrome/app/chrome_main_delegate.cc

Issue 20572004: Add media file validation to utility process (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: More comments Created 7 years, 4 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 | « no previous file | chrome/chrome.gyp » ('j') | chrome/utility/DEPS » ('J')
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 "chrome/app/chrome_main_delegate.h" 5 #include "chrome/app/chrome_main_delegate.h"
6 6
7 #include "base/command_line.h" 7 #include "base/command_line.h"
8 #include "base/files/file_path.h"
Lei Zhang 2013/08/07 23:32:57 Undo
vandebo (ex-Chrome) 2013/08/08 16:01:48 It is a missing IWYU.
8 #include "base/lazy_instance.h" 9 #include "base/lazy_instance.h"
9 #include "base/message_loop/message_loop.h" 10 #include "base/message_loop/message_loop.h"
10 #include "base/metrics/stats_counters.h" 11 #include "base/metrics/stats_counters.h"
11 #include "base/path_service.h" 12 #include "base/path_service.h"
12 #include "base/process/memory.h" 13 #include "base/process/memory.h"
13 #include "base/process/process_handle.h" 14 #include "base/process/process_handle.h"
14 #include "base/strings/stringprintf.h" 15 #include "base/strings/stringprintf.h"
15 #include "base/strings/utf_string_conversions.h" 16 #include "base/strings/utf_string_conversions.h"
16 #include "build/build_config.h" 17 #include "build/build_config.h"
17 #include "chrome/browser/chrome_content_browser_client.h" 18 #include "chrome/browser/chrome_content_browser_client.h"
(...skipping 825 matching lines...) Expand 10 before | Expand all | Expand 10 after
843 } 844 }
844 845
845 content::ContentUtilityClient* 846 content::ContentUtilityClient*
846 ChromeMainDelegate::CreateContentUtilityClient() { 847 ChromeMainDelegate::CreateContentUtilityClient() {
847 #if defined(CHROME_MULTIPLE_DLL_BROWSER) 848 #if defined(CHROME_MULTIPLE_DLL_BROWSER)
848 return NULL; 849 return NULL;
849 #else 850 #else
850 return &g_chrome_content_utility_client.Get(); 851 return &g_chrome_content_utility_client.Get();
851 #endif 852 #endif
852 } 853 }
OLDNEW
« no previous file with comments | « no previous file | chrome/chrome.gyp » ('j') | chrome/utility/DEPS » ('J')

Powered by Google App Engine
This is Rietveld 408576698