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

Side by Side Diff: content/browser/content_browser_client.cc

Issue 7006006: Replace OS_LINUX ifdefs with OS_POSIX & !OS_MACOSX, TOOLKIT_USES_GTK, or (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 9 years, 6 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/content_browser_client.h ('k') | content/browser/gpu/gpu_process_host.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) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 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/content_browser_client.h" 5 #include "content/browser/content_browser_client.h"
6 6
7 #include "base/memory/singleton.h" 7 #include "base/memory/singleton.h"
8 #include "content/browser/webui/empty_web_ui_factory.h" 8 #include "content/browser/webui/empty_web_ui_factory.h"
9 #include "googleurl/src/gurl.h" 9 #include "googleurl/src/gurl.h"
10 10
(...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after
80 return true; 80 return true;
81 } 81 }
82 82
83 QuotaPermissionContext* ContentBrowserClient::CreateQuotaPermissionContext() { 83 QuotaPermissionContext* ContentBrowserClient::CreateQuotaPermissionContext() {
84 return NULL; 84 return NULL;
85 } 85 }
86 86
87 void ContentBrowserClient::RevealFolderInOS(const FilePath& path) { 87 void ContentBrowserClient::RevealFolderInOS(const FilePath& path) {
88 } 88 }
89 89
90 #if defined(OS_LINUX) 90 #if defined(OS_POSIX) && !defined(OS_MACOSX)
91 int ContentBrowserClient::GetCrashSignalFD(const std::string& process_type) { 91 int ContentBrowserClient::GetCrashSignalFD(const std::string& process_type) {
92 return -1; 92 return -1;
93 } 93 }
94 #endif 94 #endif
95 95
96 } // namespace content 96 } // namespace content
OLDNEW
« no previous file with comments | « content/browser/content_browser_client.h ('k') | content/browser/gpu/gpu_process_host.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698