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

Side by Side Diff: chrome/gpu/gpu_thread.cc

Issue 3175038: Allow overriding of X error functions (Closed)
Patch Set: Messed up #ifdef Created 10 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
« no previous file with comments | « chrome/chrome_browser.gypi ('k') | chrome/plugin/plugin_thread.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) 2010 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2010 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/gpu/gpu_thread.h" 5 #include "chrome/gpu/gpu_thread.h"
6 6
7 #include <string> 7 #include <string>
8 #include <vector> 8 #include <vector>
9 9
10 #include "app/gfx/gl/gl_context.h" 10 #include "app/gfx/gl/gl_context.h"
11 #include "base/command_line.h" 11 #include "base/command_line.h"
12 #include "build/build_config.h" 12 #include "build/build_config.h"
13 #include "chrome/common/child_process.h" 13 #include "chrome/common/child_process.h"
14 #include "chrome/common/gpu_info.h" 14 #include "chrome/common/gpu_info.h"
15 #include "chrome/common/gpu_messages.h" 15 #include "chrome/common/gpu_messages.h"
16 #include "chrome/gpu/gpu_info_collector.h" 16 #include "chrome/gpu/gpu_info_collector.h"
17 #include "ipc/ipc_channel_handle.h" 17 #include "ipc/ipc_channel_handle.h"
18 18
19 #if defined(OS_WIN) 19 #if defined(OS_WIN)
20 #include "chrome/gpu/gpu_view_win.h" 20 #include "chrome/gpu/gpu_view_win.h"
21 #elif defined(GPU_USE_GLX) 21 #elif defined(GPU_USE_GLX)
22 #include "chrome/gpu/gpu_backing_store_glx_context.h" 22 #include "chrome/gpu/gpu_backing_store_glx_context.h"
23 #include "chrome/gpu/gpu_view_x.h" 23 #include "chrome/gpu/gpu_view_x.h"
24 24
25 #include <X11/Xutil.h> // Must be last. 25 #include <X11/Xutil.h> // Must be last.
26 #endif 26 #endif
27 27
28 #if defined(OS_LINUX) 28 #if defined(OS_LINUX)
29 #include "app/x11_util.h"
29 #include <gtk/gtk.h> 30 #include <gtk/gtk.h>
30 #endif 31 #endif
31 32
32 GpuThread::GpuThread() { 33 GpuThread::GpuThread() {
33 #if defined(GPU_USE_GLX) 34 #if defined(GPU_USE_GLX)
34 display_ = ::XOpenDisplay(NULL); 35 display_ = ::XOpenDisplay(NULL);
35 #endif 36 #endif
36 #if defined(OS_LINUX) 37 #if defined(OS_LINUX)
37 { 38 {
38 // The X11 port of the command buffer code assumes it can access the X 39 // The X11 port of the command buffer code assumes it can access the X
(...skipping 11 matching lines...) Expand all
50 // here. 51 // here.
51 argv[i] = strdup(args[i].c_str()); 52 argv[i] = strdup(args[i].c_str());
52 } 53 }
53 argv[argc] = NULL; 54 argv[argc] = NULL;
54 char **argv_pointer = argv.get(); 55 char **argv_pointer = argv.get();
55 56
56 gtk_init(&argc, &argv_pointer); 57 gtk_init(&argc, &argv_pointer);
57 for (size_t i = 0; i < args.size(); ++i) { 58 for (size_t i = 0; i < args.size(); ++i) {
58 free(argv[i]); 59 free(argv[i]);
59 } 60 }
60 x11_util::SetX11ErrorHandlers(); 61 x11_util::SetDefaultX11ErrorHandlers();
61 } 62 }
62 #endif 63 #endif
63 } 64 }
64 65
65 GpuThread::~GpuThread() { 66 GpuThread::~GpuThread() {
66 } 67 }
67 68
68 #if defined(GPU_USE_GLX) 69 #if defined(GPU_USE_GLX)
69 GpuBackingStoreGLXContext* GpuThread::GetGLXContext() { 70 GpuBackingStoreGLXContext* GpuThread::GetGLXContext() {
70 if (!glx_context_.get()) 71 if (!glx_context_.get())
(...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after
139 // message to destroy the GpuRWHView when necessary. So we don't manage the 140 // message to destroy the GpuRWHView when necessary. So we don't manage the
140 // lifetime of this object. 141 // lifetime of this object.
141 #if defined(OS_WIN) 142 #if defined(OS_WIN)
142 new GpuViewWin(this, parent_window, routing_id); 143 new GpuViewWin(this, parent_window, routing_id);
143 #elif defined(GPU_USE_GLX) 144 #elif defined(GPU_USE_GLX)
144 new GpuViewX(this, parent_window, routing_id); 145 new GpuViewX(this, parent_window, routing_id);
145 #else 146 #else
146 NOTIMPLEMENTED(); 147 NOTIMPLEMENTED();
147 #endif 148 #endif
148 } 149 }
OLDNEW
« no previous file with comments | « chrome/chrome_browser.gypi ('k') | chrome/plugin/plugin_thread.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698