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

Side by Side Diff: content/browser/renderer_host/render_sandbox_host_linux.cc

Issue 68683009: Rewrite include paths for Blink public/ headers that have moved (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 7 years, 1 month 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
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/browser/renderer_host/render_sandbox_host_linux.h" 5 #include "content/browser/renderer_host/render_sandbox_host_linux.h"
6 6
7 #include <fcntl.h> 7 #include <fcntl.h>
8 #include <fontconfig/fontconfig.h> 8 #include <fontconfig/fontconfig.h>
9 #include <stdint.h> 9 #include <stdint.h>
10 #include <sys/poll.h> 10 #include <sys/poll.h>
(...skipping 15 matching lines...) Expand all
26 #include "base/posix/unix_domain_socket_linux.h" 26 #include "base/posix/unix_domain_socket_linux.h"
27 #include "base/process/launch.h" 27 #include "base/process/launch.h"
28 #include "base/strings/string_number_conversions.h" 28 #include "base/strings/string_number_conversions.h"
29 #include "base/strings/string_util.h" 29 #include "base/strings/string_util.h"
30 #include "content/child/webkitplatformsupport_impl.h" 30 #include "content/child/webkitplatformsupport_impl.h"
31 #include "content/common/font_config_ipc_linux.h" 31 #include "content/common/font_config_ipc_linux.h"
32 #include "content/common/sandbox_linux.h" 32 #include "content/common/sandbox_linux.h"
33 #include "content/common/set_process_title.h" 33 #include "content/common/set_process_title.h"
34 #include "content/public/common/content_switches.h" 34 #include "content/public/common/content_switches.h"
35 #include "skia/ext/skia_utils_base.h" 35 #include "skia/ext/skia_utils_base.h"
36 #include "third_party/WebKit/public/platform/linux/WebFontInfo.h"
36 #include "third_party/WebKit/public/web/WebKit.h" 37 #include "third_party/WebKit/public/web/WebKit.h"
37 #include "third_party/WebKit/public/web/linux/WebFontInfo.h"
38 #include "third_party/npapi/bindings/npapi_extensions.h" 38 #include "third_party/npapi/bindings/npapi_extensions.h"
39 #include "third_party/skia/include/ports/SkFontConfigInterface.h" 39 #include "third_party/skia/include/ports/SkFontConfigInterface.h"
40 #include "ui/gfx/font_render_params_linux.h" 40 #include "ui/gfx/font_render_params_linux.h"
41 41
42 using blink::WebCString; 42 using blink::WebCString;
43 using blink::WebFontInfo; 43 using blink::WebFontInfo;
44 using blink::WebUChar; 44 using blink::WebUChar;
45 using blink::WebUChar32; 45 using blink::WebUChar32;
46 46
47 namespace content { 47 namespace content {
(...skipping 675 matching lines...) Expand 10 before | Expand all | Expand 10 after
723 RenderSandboxHostLinux::~RenderSandboxHostLinux() { 723 RenderSandboxHostLinux::~RenderSandboxHostLinux() {
724 if (initialized_) { 724 if (initialized_) {
725 if (HANDLE_EINTR(close(renderer_socket_)) < 0) 725 if (HANDLE_EINTR(close(renderer_socket_)) < 0)
726 PLOG(ERROR) << "close"; 726 PLOG(ERROR) << "close";
727 if (HANDLE_EINTR(close(childs_lifeline_fd_)) < 0) 727 if (HANDLE_EINTR(close(childs_lifeline_fd_)) < 0)
728 PLOG(ERROR) << "close"; 728 PLOG(ERROR) << "close";
729 } 729 }
730 } 730 }
731 731
732 } // namespace content 732 } // namespace content
OLDNEW
« no previous file with comments | « content/browser/renderer_host/gtk_window_utils.cc ('k') | content/browser/renderer_host/render_widget_host_view_aura.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698