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

Side by Side Diff: chrome/browser/ssl/common_name_mismatch_handler.h

Issue 1545223002: Switch to standard integer types in chrome/browser/, part 4 of 4. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix Created 4 years, 12 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 (c) 2015 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2015 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_SSL_COMMON_NAME_MISMATCH_HANDLER_H_ 5 #ifndef CHROME_BROWSER_SSL_COMMON_NAME_MISMATCH_HANDLER_H_
6 #define CHROME_BROWSER_SSL_COMMON_NAME_MISMATCH_HANDLER_H_ 6 #define CHROME_BROWSER_SSL_COMMON_NAME_MISMATCH_HANDLER_H_
7 7
8 #include "base/basictypes.h"
9 #include "base/callback.h" 8 #include "base/callback.h"
9 #include "base/macros.h"
10 #include "base/memory/ref_counted.h" 10 #include "base/memory/ref_counted.h"
11 #include "base/memory/scoped_ptr.h" 11 #include "base/memory/scoped_ptr.h"
12 #include "base/threading/non_thread_safe.h" 12 #include "base/threading/non_thread_safe.h"
13 #include "base/time/time.h" 13 #include "base/time/time.h"
14 #include "net/url_request/url_fetcher.h" 14 #include "net/url_request/url_fetcher.h"
15 #include "net/url_request/url_fetcher_delegate.h" 15 #include "net/url_request/url_fetcher_delegate.h"
16 #include "net/url_request/url_request_context_getter.h" 16 #include "net/url_request/url_request_context_getter.h"
17 #include "url/gurl.h" 17 #include "url/gurl.h"
18 18
19 namespace net { 19 namespace net {
(...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after
81 static TestingState testing_state_; 81 static TestingState testing_state_;
82 const GURL request_url_; 82 const GURL request_url_;
83 scoped_refptr<net::URLRequestContextGetter> request_context_; 83 scoped_refptr<net::URLRequestContextGetter> request_context_;
84 CheckUrlCallback check_url_callback_; 84 CheckUrlCallback check_url_callback_;
85 scoped_ptr<net::URLFetcher> url_fetcher_; 85 scoped_ptr<net::URLFetcher> url_fetcher_;
86 86
87 DISALLOW_COPY_AND_ASSIGN(CommonNameMismatchHandler); 87 DISALLOW_COPY_AND_ASSIGN(CommonNameMismatchHandler);
88 }; 88 };
89 89
90 #endif // CHROME_BROWSER_SSL_COMMON_NAME_MISMATCH_HANDLER_H_ 90 #endif // CHROME_BROWSER_SSL_COMMON_NAME_MISMATCH_HANDLER_H_
OLDNEW
« no previous file with comments | « chrome/browser/ssl/chrome_ssl_host_state_delegate_factory.cc ('k') | chrome/browser/ssl/security_state_model.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698