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

Side by Side Diff: ios/web/net/request_tracker_factory_impl.h

Issue 1043243003: Upstream most of ios/web/net (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 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
OLDNEW
(Empty)
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
3 // found in the LICENSE file.
4
5 #ifndef IOS_WEB_NET_REQUEST_TRACKER_FACTORY_IMPL_H_
6 #define IOS_WEB_NET_REQUEST_TRACKER_FACTORY_IMPL_H_
7
8 #include <string>
9
10 #include "base/mac/scoped_nsobject.h"
11 #include "ios/net/request_tracker.h"
12
13 namespace web {
14
15 class RequestTrackerFactoryImpl
16 : public net::RequestTracker::RequestTrackerFactory {
17 public:
18 explicit RequestTrackerFactoryImpl(const std::string& application_scheme);
19 virtual ~RequestTrackerFactoryImpl();
Eugene But (OOO till 7-30) 2015/03/31 20:11:09 override
stuartmorgan 2015/03/31 21:08:13 Done. This revealed a missing virtual destructor o
20
21 private:
22 // RequestTracker::RequestTrackerFactory implementation
23 bool GetRequestTracker(NSURLRequest* request,
24 base::WeakPtr<net::RequestTracker>* tracker) override;
25
26 base::scoped_nsobject<NSString> application_scheme_;
27 };
28
29 } // namespace web
30
31 #endif // IOS_WEB_NET_REQUEST_TRACKER_FACTORY_IMPL_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698