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

Side by Side Diff: components/data_reduction_proxy/browser/data_reduction_proxy_auth_request_handler.h

Issue 286013002: Added alternative configuration for the data reduction proxy (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: DCHECK fix Created 6 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
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 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 COMPONENTS_DATA_REDUCTION_PROXY_BROWSER_DATA_REDUCTION_PROXY_AUTH_REQUES T_HANDLER_H_ 5 #ifndef COMPONENTS_DATA_REDUCTION_PROXY_BROWSER_DATA_REDUCTION_PROXY_AUTH_REQUES T_HANDLER_H_
6 #define COMPONENTS_DATA_REDUCTION_PROXY_BROWSER_DATA_REDUCTION_PROXY_AUTH_REQUES T_HANDLER_H_ 6 #define COMPONENTS_DATA_REDUCTION_PROXY_BROWSER_DATA_REDUCTION_PROXY_AUTH_REQUES T_HANDLER_H_
7 7
8 #include "base/gtest_prod_util.h" 8 #include "base/gtest_prod_util.h"
9 #include "base/strings/string16.h" 9 #include "base/strings/string16.h"
10 #include "base/time/time.h" 10 #include "base/time/time.h"
11 #include "components/data_reduction_proxy/browser/data_reduction_proxy_settings. h"
12
11 13
12 namespace net { 14 namespace net {
13 class AuthChallengeInfo; 15 class AuthChallengeInfo;
14 } 16 }
15 17
16 namespace data_reduction_proxy { 18 namespace data_reduction_proxy {
17 19
18 class DataReductionProxySettings; 20 class DataReductionProxySettings;
19 21
20 class DataReductionProxyAuthRequestHandler { 22 class DataReductionProxyAuthRequestHandler {
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after
71 static int64 auth_token_invalidation_timestamp_; 73 static int64 auth_token_invalidation_timestamp_;
72 74
73 // Settings object for the data reduction proxy. Must outlive the handler. 75 // Settings object for the data reduction proxy. Must outlive the handler.
74 DataReductionProxySettings* settings_; 76 DataReductionProxySettings* settings_;
75 77
76 DISALLOW_COPY_AND_ASSIGN(DataReductionProxyAuthRequestHandler); 78 DISALLOW_COPY_AND_ASSIGN(DataReductionProxyAuthRequestHandler);
77 }; 79 };
78 80
79 } // namespace data_reduction_proxy 81 } // namespace data_reduction_proxy
80 #endif // COMPONENTS_DATA_REDUCTION_PROXY_BROWSER_DATA_REDUCTION_PROXY_AUTH_REQ UEST_HANDLER_H_ 82 #endif // COMPONENTS_DATA_REDUCTION_PROXY_BROWSER_DATA_REDUCTION_PROXY_AUTH_REQ UEST_HANDLER_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698