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

Side by Side Diff: ios/web/public/web_state/web_state_user_data.h

Issue 777183002: Upstream iOS web API. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase Created 6 years 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
« no previous file with comments | « ios/web/public/web_state/web_state.h ('k') | ios/web/web_state/web_state.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 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 IOS_PUBLIC_PROVIDER_WEB_WEB_STATE_USER_DATA_H_ 5 #ifndef IOS_WEB_PUBLIC_WEB_STATE_WEB_STATE_USER_DATA_H_
6 #define IOS_PUBLIC_PROVIDER_WEB_WEB_STATE_USER_DATA_H_ 6 #define IOS_WEB_PUBLIC_WEB_STATE_WEB_STATE_USER_DATA_H_
7 7
8 #include "base/supports_user_data.h" 8 #include "base/supports_user_data.h"
9 #include "ios/public/provider/web/web_state.h" 9 #include "ios/web/public/web_state/web_state.h"
10 10
11 namespace ios { 11 namespace web {
12 12
13 // A base class for classes attached to, and scoped to, the lifetime of a 13 // A base class for classes attached to, and scoped to, the lifetime of a
14 // WebState. For example: 14 // WebState. For example:
15 // 15 //
16 // --- in foo.h --- 16 // --- in foo.h ---
17 // class Foo : public ios::WebStateUserData<Foo> { 17 // class Foo : public web::WebStateUserData<Foo> {
18 // public: 18 // public:
19 // virtual ~Foo(); 19 // virtual ~Foo();
20 // // ... more public stuff here ... 20 // // ... more public stuff here ...
21 // private: 21 // private:
22 // explicit Foo(ios::WebState* web_state); 22 // explicit Foo(web::WebState* web_state);
23 // friend class ios::WebStateUserData<Foo>; 23 // friend class web::WebStateUserData<Foo>;
24 // // ... more private stuff here ... 24 // // ... more private stuff here ...
25 // } 25 // }
26 // --- in foo.cc --- 26 // --- in foo.cc ---
27 // DEFINE_WEB_CONTENTS_USER_DATA_KEY(Foo); 27 // DEFINE_WEB_CONTENTS_USER_DATA_KEY(Foo);
28 // 28 //
29 template <typename T> 29 template <typename T>
30 class WebStateUserData : public base::SupportsUserData::Data { 30 class WebStateUserData : public base::SupportsUserData::Data {
31 public: 31 public:
32 // Creates an object of type T, and attaches it to the specified WebState. 32 // Creates an object of type T, and attaches it to the specified WebState.
33 // If an instance is already attached, does nothing. 33 // If an instance is already attached, does nothing.
34 static void CreateForWebState(WebState* web_state) { 34 static void CreateForWebState(WebState* web_state) {
35 if (!FromWebState(web_state)) 35 if (!FromWebState(web_state))
36 web_state->SetUserData(UserDataKey(), new T(web_state)); 36 web_state->SetUserData(UserDataKey(), new T(web_state));
37 } 37 }
38 38
39 // Retrieves the instance of type T that was attached to the specified 39 // Retrieves the instance of type T that was attached to the specified
40 // WebState (via CreateForWebState above) and returns it. If no instance 40 // WebState (via CreateForWebState above) and returns it. If no instance
41 // of the type was attached, returns NULL. 41 // of the type was attached, returns NULL.
42 static T* FromWebState(WebState* web_state) { 42 static T* FromWebState(WebState* web_state) {
43 return static_cast<T*>(web_state->GetUserData(UserDataKey())); 43 return static_cast<T*>(web_state->GetUserData(UserDataKey()));
44 } 44 }
45 static const T* FromWebState(const WebState* web_state) { 45 static const T* FromWebState(const WebState* web_state) {
46 return static_cast<const T*>(web_state->GetUserData(UserDataKey())); 46 return static_cast<const T*>(web_state->GetUserData(UserDataKey()));
47 } 47 }
48 // Removes the instance attached to the specified WebState.
49 static void RemoveFromWebState(WebState* web_state) {
50 web_state->RemoveUserData(UserDataKey());
51 }
48 52
49 protected: 53 protected:
50 static inline void* UserDataKey() { 54 static inline void* UserDataKey() { return &kLocatorKey; }
51 return &kLocatorKey;
52 }
53 55
54 private: 56 private:
55 // The user data key. 57 // The user data key.
56 static int kLocatorKey; 58 static int kLocatorKey;
57 }; 59 };
58 60
59 // The macro to define the locator key. This key should be defined in the .cc 61 // The macro to define the locator key. This key should be defined in the .cc
60 // file of the derived class. 62 // file of the derived class.
61 // 63 //
62 // The "= 0" is surprising, but is required to effect a definition rather than 64 // The "= 0" is surprising, but is required to effect a definition rather than
63 // a declaration. Without it, this would be merely a declaration of a template 65 // a declaration. Without it, this would be merely a declaration of a template
64 // specialization. (C++98: 14.7.3.15; C++11: 14.7.3.13) 66 // specialization. (C++98: 14.7.3.15; C++11: 14.7.3.13)
65 // 67 //
66 #define DEFINE_WEB_STATE_USER_DATA_KEY(TYPE) \ 68 #define DEFINE_WEB_STATE_USER_DATA_KEY(TYPE) \
67 template<> \ 69 template <> \
68 int ios::WebStateUserData<TYPE>::kLocatorKey = 0 70 int web::WebStateUserData<TYPE>::kLocatorKey = 0
69 71
70 } // namespace ios 72 } // namespace web
71 73
72 #endif // IOS_PUBLIC_PROVIDER_WEB_WEB_STATE_USER_DATA_H_ 74 #endif // IOS_WEB_PUBLIC_WEB_STATE_WEB_STATE_USER_DATA_H_
OLDNEW
« no previous file with comments | « ios/web/public/web_state/web_state.h ('k') | ios/web/web_state/web_state.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698