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

Side by Side Diff: chrome/browser/net/chrome_network_delegate.h

Issue 10068021: Fix file access on Chrome for ChromeOS on Linux (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fixed clang problem Created 8 years, 8 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 CHROME_BROWSER_NET_CHROME_NETWORK_DELEGATE_H_ 5 #ifndef CHROME_BROWSER_NET_CHROME_NETWORK_DELEGATE_H_
6 #define CHROME_BROWSER_NET_CHROME_NETWORK_DELEGATE_H_ 6 #define CHROME_BROWSER_NET_CHROME_NETWORK_DELEGATE_H_
7 #pragma once 7 #pragma once
8 8
9 #include "base/basictypes.h" 9 #include "base/basictypes.h"
10 #include "base/compiler_specific.h" 10 #include "base/compiler_specific.h"
(...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after
75 virtual net::NetworkDelegate::AuthRequiredResponse OnAuthRequired( 75 virtual net::NetworkDelegate::AuthRequiredResponse OnAuthRequired(
76 net::URLRequest* request, 76 net::URLRequest* request,
77 const net::AuthChallengeInfo& auth_info, 77 const net::AuthChallengeInfo& auth_info,
78 const AuthCallback& callback, 78 const AuthCallback& callback,
79 net::AuthCredentials* credentials) OVERRIDE; 79 net::AuthCredentials* credentials) OVERRIDE;
80 virtual bool CanGetCookies(const net::URLRequest* request, 80 virtual bool CanGetCookies(const net::URLRequest* request,
81 const net::CookieList& cookie_list) OVERRIDE; 81 const net::CookieList& cookie_list) OVERRIDE;
82 virtual bool CanSetCookie(const net::URLRequest* request, 82 virtual bool CanSetCookie(const net::URLRequest* request,
83 const std::string& cookie_line, 83 const std::string& cookie_line,
84 net::CookieOptions* options) OVERRIDE; 84 net::CookieOptions* options) OVERRIDE;
85 virtual bool CanAccessFile(const net::URLRequest* request,
willchan no longer on Chromium 2012/04/19 21:12:24 const net::URLRequest& instead. The other places h
Greg Spencer (Chromium) 2012/04/20 00:05:54 Done. I fixed the other places too (turns out the
86 const FilePath& path) OVERRIDE;
85 87
86 scoped_refptr<ExtensionEventRouterForwarder> event_router_; 88 scoped_refptr<ExtensionEventRouterForwarder> event_router_;
87 void* profile_; 89 void* profile_;
88 scoped_refptr<CookieSettings> cookie_settings_; 90 scoped_refptr<CookieSettings> cookie_settings_;
89 91
90 scoped_refptr<ExtensionInfoMap> extension_info_map_; 92 scoped_refptr<ExtensionInfoMap> extension_info_map_;
91 93
92 // Weak, owned by our owner. 94 // Weak, owned by our owner.
93 BooleanPrefMember* enable_referrers_; 95 BooleanPrefMember* enable_referrers_;
94 96
95 // Weak, owned by our owner. 97 // Weak, owned by our owner.
96 const policy::URLBlacklistManager* url_blacklist_manager_; 98 const policy::URLBlacklistManager* url_blacklist_manager_;
97 99
98 DISALLOW_COPY_AND_ASSIGN(ChromeNetworkDelegate); 100 DISALLOW_COPY_AND_ASSIGN(ChromeNetworkDelegate);
99 }; 101 };
100 102
101 #endif // CHROME_BROWSER_NET_CHROME_NETWORK_DELEGATE_H_ 103 #endif // CHROME_BROWSER_NET_CHROME_NETWORK_DELEGATE_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698