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

Side by Side Diff: ios/web_view/internal/criwv_web_client.h

Issue 2715043002: Replace prefix of ios/web_view C++ classes. (Closed)
Patch Set: Respond to comments. Created 3 years, 10 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_VIEW_INTERNAL_CRIWV_WEB_CLIENT_H_
6 #define IOS_WEB_VIEW_INTERNAL_CRIWV_WEB_CLIENT_H_
7
8 #include <memory>
9 #include "base/compiler_specific.h"
10 #import "ios/web/public/web_client.h"
11
12 @protocol CWVDelegate;
13
14 namespace ios_web_view {
15 class CRIWVBrowserState;
16 class CRIWVWebMainParts;
17
18 // CWV-specific implementation of WebClient. Delegates some functionality to
19 // CWVDelegate.
20 class CRIWVWebClient : public web::WebClient {
21 public:
22 explicit CRIWVWebClient(id<CWVDelegate> delegate);
23 ~CRIWVWebClient() override;
24
25 // WebClient implementation.
26 web::WebMainParts* CreateWebMainParts() override;
27 std::string GetProduct() const override;
28 std::string GetUserAgent(bool desktop_user_agent) const override;
29
30 // Normal browser state associated with the receiver.
31 CRIWVBrowserState* browser_state() const;
32 // Off the record browser state associated with the receiver.
33 CRIWVBrowserState* off_the_record_browser_state() const;
34
35 private:
36 // This object's delegate.
37 __weak id<CWVDelegate> delegate_;
38
39 // The WebMainParts created by |CreateWebMainParts()|.
40 CRIWVWebMainParts* web_main_parts_;
41
42 DISALLOW_COPY_AND_ASSIGN(CRIWVWebClient);
43 };
44
45 } // namespace ios_web_view
46
47 #endif // IOS_WEB_VIEW_INTERNAL_CRIWV_WEB_CLIENT_H_
OLDNEW
« no previous file with comments | « ios/web_view/internal/criwv_url_request_context_getter.mm ('k') | ios/web_view/internal/criwv_web_client.mm » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698