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

Side by Side Diff: content/browser/gpu_process_host.h

Issue 6672064: Move gpu_feature_flags from chrome\common to content\browser since it's only ... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 9 years, 9 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/browser/gpu_blacklist.h ('k') | content/browser/gpu_process_host.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 #ifndef CONTENT_BROWSER_GPU_PROCESS_HOST_H_ 5 #ifndef CONTENT_BROWSER_GPU_PROCESS_HOST_H_
6 #define CONTENT_BROWSER_GPU_PROCESS_HOST_H_ 6 #define CONTENT_BROWSER_GPU_PROCESS_HOST_H_
7 #pragma once 7 #pragma once
8 8
9 #include "base/threading/non_thread_safe.h" 9 #include "base/threading/non_thread_safe.h"
10 #include "chrome/common/gpu_feature_flags.h"
11 #include "content/browser/browser_child_process_host.h" 10 #include "content/browser/browser_child_process_host.h"
11 #include "content/common/gpu_feature_flags.h"
12 12
13 namespace IPC { 13 namespace IPC {
14 class Message; 14 class Message;
15 } 15 }
16 16
17 class GpuProcessHost : public BrowserChildProcessHost, 17 class GpuProcessHost : public BrowserChildProcessHost,
18 public base::NonThreadSafe { 18 public base::NonThreadSafe {
19 public: 19 public:
20 20
21 // Create a GpuProcessHost with the given ID. The object can be found using 21 // Create a GpuProcessHost with the given ID. The object can be found using
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after
53 53
54 // The serial number of the GpuProcessHost / GpuProcessHostUIShim pair. 54 // The serial number of the GpuProcessHost / GpuProcessHostUIShim pair.
55 int host_id_; 55 int host_id_;
56 56
57 GpuFeatureFlags gpu_feature_flags_; 57 GpuFeatureFlags gpu_feature_flags_;
58 58
59 DISALLOW_COPY_AND_ASSIGN(GpuProcessHost); 59 DISALLOW_COPY_AND_ASSIGN(GpuProcessHost);
60 }; 60 };
61 61
62 #endif // CONTENT_BROWSER_GPU_PROCESS_HOST_H_ 62 #endif // CONTENT_BROWSER_GPU_PROCESS_HOST_H_
OLDNEW
« no previous file with comments | « content/browser/gpu_blacklist.h ('k') | content/browser/gpu_process_host.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698