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

Side by Side Diff: android_webview/lib/main/aw_main_delegate.cc

Issue 2086483006: Dump process type into breakpad. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: comment Created 4 years, 5 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 | « no previous file | components/crash/content/app/breakpad_linux.h » ('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 "android_webview/lib/main/aw_main_delegate.h" 5 #include "android_webview/lib/main/aw_main_delegate.h"
6 6
7 #include <memory> 7 #include <memory>
8 8
9 #include "android_webview/browser/aw_content_browser_client.h" 9 #include "android_webview/browser/aw_content_browser_client.h"
10 #include "android_webview/browser/browser_view_renderer.h" 10 #include "android_webview/browser/browser_view_renderer.h"
(...skipping 12 matching lines...) Expand all
23 #include "android_webview/native/aw_web_preferences_populater_impl.h" 23 #include "android_webview/native/aw_web_preferences_populater_impl.h"
24 #include "android_webview/renderer/aw_content_renderer_client.h" 24 #include "android_webview/renderer/aw_content_renderer_client.h"
25 #include "base/android/apk_assets.h" 25 #include "base/android/apk_assets.h"
26 #include "base/command_line.h" 26 #include "base/command_line.h"
27 #include "base/cpu.h" 27 #include "base/cpu.h"
28 #include "base/i18n/icu_util.h" 28 #include "base/i18n/icu_util.h"
29 #include "base/lazy_instance.h" 29 #include "base/lazy_instance.h"
30 #include "base/logging.h" 30 #include "base/logging.h"
31 #include "base/threading/thread_restrictions.h" 31 #include "base/threading/thread_restrictions.h"
32 #include "cc/base/switches.h" 32 #include "cc/base/switches.h"
33 #include "components/crash/content/app/breakpad_linux.h"
33 #include "components/external_video_surface/browser/android/external_video_surfa ce_container_impl.h" 34 #include "components/external_video_surface/browser/android/external_video_surfa ce_container_impl.h"
34 #include "content/public/browser/android/browser_media_player_manager_register.h " 35 #include "content/public/browser/android/browser_media_player_manager_register.h "
35 #include "content/public/browser/browser_main_runner.h" 36 #include "content/public/browser/browser_main_runner.h"
36 #include "content/public/browser/browser_thread.h" 37 #include "content/public/browser/browser_thread.h"
37 #include "content/public/common/content_descriptors.h" 38 #include "content/public/common/content_descriptors.h"
38 #include "content/public/common/content_switches.h" 39 #include "content/public/common/content_switches.h"
39 #include "gin/public/isolate_holder.h" 40 #include "gin/public/isolate_holder.h"
40 #include "gin/v8_initializer.h" 41 #include "gin/v8_initializer.h"
41 #include "gpu/command_buffer/client/gl_in_process_context.h" 42 #include "gpu/command_buffer/client/gl_in_process_context.h"
42 #include "gpu/command_buffer/service/gpu_switches.h" 43 #include "gpu/command_buffer/service/gpu_switches.h"
(...skipping 117 matching lines...) Expand 10 before | Expand all | Expand 10 after
160 ResourceBundle::InitSharedInstanceWithPakFileRegion(base::File(pak_fd), 161 ResourceBundle::InitSharedInstanceWithPakFileRegion(base::File(pak_fd),
161 pak_region); 162 pak_region);
162 pak_fd = global_descriptors->Get(kAndroidWebViewMainPakDescriptor); 163 pak_fd = global_descriptors->Get(kAndroidWebViewMainPakDescriptor);
163 pak_region = 164 pak_region =
164 global_descriptors->GetRegion(kAndroidWebViewMainPakDescriptor); 165 global_descriptors->GetRegion(kAndroidWebViewMainPakDescriptor);
165 ResourceBundle::GetSharedInstance().AddDataPackFromFileRegion( 166 ResourceBundle::GetSharedInstance().AddDataPackFromFileRegion(
166 base::File(pak_fd), pak_region, ui::SCALE_FACTOR_NONE); 167 base::File(pak_fd), pak_region, ui::SCALE_FACTOR_NONE);
167 crash_signal_fd = 168 crash_signal_fd =
168 global_descriptors->Get(kAndroidWebViewCrashSignalDescriptor); 169 global_descriptors->Get(kAndroidWebViewCrashSignalDescriptor);
169 } 170 }
170 if (process_type.empty() && 171 if (process_type.empty()) {
171 command_line.HasSwitch(switches::kSingleProcess)) { 172 if (command_line.HasSwitch(switches::kSingleProcess)) {
172 // "webview" has a special treatment in breakpad_linux.cc. 173 process_type = breakpad::kWebViewSingleProcessType;
173 process_type = "webview"; 174 } else {
175 process_type = breakpad::kBrowserProcessType;
176 }
174 } 177 }
175 178
176 crash_reporter::EnableMicrodumpCrashReporter(process_type, crash_signal_fd); 179 crash_reporter::EnableMicrodumpCrashReporter(process_type, crash_signal_fd);
177 } 180 }
178 181
179 int AwMainDelegate::RunProcess( 182 int AwMainDelegate::RunProcess(
180 const std::string& process_type, 183 const std::string& process_type,
181 const content::MainFunctionParams& main_function_params) { 184 const content::MainFunctionParams& main_function_params) {
182 if (process_type.empty()) { 185 if (process_type.empty()) {
183 AwBrowserDependencyFactoryImpl::InstallInstance(); 186 AwBrowserDependencyFactoryImpl::InstallInstance();
(...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after
259 #if defined(VIDEO_HOLE) 262 #if defined(VIDEO_HOLE)
260 content::ExternalVideoSurfaceContainer* 263 content::ExternalVideoSurfaceContainer*
261 AwMainDelegate::CreateExternalVideoSurfaceContainer( 264 AwMainDelegate::CreateExternalVideoSurfaceContainer(
262 content::WebContents* web_contents) { 265 content::WebContents* web_contents) {
263 return external_video_surface::ExternalVideoSurfaceContainerImpl::Create( 266 return external_video_surface::ExternalVideoSurfaceContainerImpl::Create(
264 web_contents); 267 web_contents);
265 } 268 }
266 #endif 269 #endif
267 270
268 } // namespace android_webview 271 } // namespace android_webview
OLDNEW
« no previous file with comments | « no previous file | components/crash/content/app/breakpad_linux.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698