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

Side by Side Diff: content/public/browser/content_browser_client.h

Issue 184003002: Remove CreatePlatformFile from content shell. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 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
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 #ifndef CONTENT_PUBLIC_BROWSER_CONTENT_BROWSER_CLIENT_H_ 5 #ifndef CONTENT_PUBLIC_BROWSER_CONTENT_BROWSER_CLIENT_H_
6 #define CONTENT_PUBLIC_BROWSER_CONTENT_BROWSER_CLIENT_H_ 6 #define CONTENT_PUBLIC_BROWSER_CONTENT_BROWSER_CLIENT_H_
7 7
8 #include <map> 8 #include <map>
9 #include <string> 9 #include <string>
10 #include <utility> 10 #include <utility>
11 #include <vector> 11 #include <vector>
12 12
13 #include "base/callback_forward.h" 13 #include "base/callback_forward.h"
14 #include "base/memory/linked_ptr.h" 14 #include "base/memory/linked_ptr.h"
15 #include "base/memory/scoped_ptr.h" 15 #include "base/memory/scoped_ptr.h"
16 #include "base/memory/scoped_vector.h" 16 #include "base/memory/scoped_vector.h"
17 #include "base/values.h" 17 #include "base/values.h"
18 #include "content/public/browser/certificate_request_result_type.h" 18 #include "content/public/browser/certificate_request_result_type.h"
19 #include "content/public/browser/file_descriptor_info.h"
20 #include "content/public/common/content_client.h" 19 #include "content/public/common/content_client.h"
21 #include "content/public/common/socket_permission_request.h" 20 #include "content/public/common/socket_permission_request.h"
22 #include "content/public/common/window_container_type.h" 21 #include "content/public/common/window_container_type.h"
23 #include "net/base/mime_util.h" 22 #include "net/base/mime_util.h"
24 #include "net/cookies/canonical_cookie.h" 23 #include "net/cookies/canonical_cookie.h"
25 #include "net/url_request/url_request_job_factory.h" 24 #include "net/url_request/url_request_job_factory.h"
26 #include "third_party/WebKit/public/web/WebNotificationPresenter.h" 25 #include "third_party/WebKit/public/web/WebNotificationPresenter.h"
27 #include "ui/base/window_open_disposition.h" 26 #include "ui/base/window_open_disposition.h"
28 #include "webkit/common/resource_type.h" 27 #include "webkit/common/resource_type.h"
29 28
30 #if defined(OS_POSIX) && !defined(OS_MACOSX) 29 #if defined(OS_POSIX) && !defined(OS_MACOSX)
31 #include "base/posix/global_descriptors.h" 30 #include "base/posix/global_descriptors.h"
32 #endif 31 #endif
33 32
33 #if defined(OS_POSIX)
34 #include "content/public/browser/file_descriptor_info.h"
35 #endif
36
34 class CommandLine; 37 class CommandLine;
35 class GURL; 38 class GURL;
36 struct WebPreferences; 39 struct WebPreferences;
37 40
38 namespace blink { 41 namespace blink {
39 struct WebWindowFeatures; 42 struct WebWindowFeatures;
40 } 43 }
41 44
42 namespace base { 45 namespace base {
43 class DictionaryValue; 46 class DictionaryValue;
(...skipping 573 matching lines...) Expand 10 before | Expand all | Expand 10 after
617 content::BrowserContext* browser_context, 620 content::BrowserContext* browser_context,
618 const GURL& url); 621 const GURL& url);
619 622
620 // Returns true if dev channel APIs are available for plugins. 623 // Returns true if dev channel APIs are available for plugins.
621 virtual bool IsPluginAllowedToUseDevChannelAPIs(); 624 virtual bool IsPluginAllowedToUseDevChannelAPIs();
622 }; 625 };
623 626
624 } // namespace content 627 } // namespace content
625 628
626 #endif // CONTENT_PUBLIC_BROWSER_CONTENT_BROWSER_CLIENT_H_ 629 #endif // CONTENT_PUBLIC_BROWSER_CONTENT_BROWSER_CLIENT_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698