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

Side by Side Diff: ios/web/web_state/web_state_impl.h

Issue 2593283002: [ios] Removed keyCode from FormActivityRegistered API. (Closed)
Patch Set: Created 4 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
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_WEB_WEB_STATE_WEB_STATE_IMPL_H_ 5 #ifndef IOS_WEB_WEB_STATE_WEB_STATE_IMPL_H_
6 #define IOS_WEB_WEB_STATE_WEB_STATE_IMPL_H_ 6 #define IOS_WEB_WEB_STATE_WEB_STATE_IMPL_H_
7 7
8 #include <stddef.h> 8 #include <stddef.h>
9 #include <stdint.h> 9 #include <stdint.h>
10 10
(...skipping 96 matching lines...) Expand 10 before | Expand all | Expand 10 after
107 void OnPageLoaded(const GURL& url, bool load_success); 107 void OnPageLoaded(const GURL& url, bool load_success);
108 108
109 // Called on form submission. 109 // Called on form submission.
110 void OnDocumentSubmitted(const std::string& form_name, bool user_initiated); 110 void OnDocumentSubmitted(const std::string& form_name, bool user_initiated);
111 111
112 // Called when form activity is registered. 112 // Called when form activity is registered.
113 void OnFormActivityRegistered(const std::string& form_name, 113 void OnFormActivityRegistered(const std::string& form_name,
114 const std::string& field_name, 114 const std::string& field_name,
115 const std::string& type, 115 const std::string& type,
116 const std::string& value, 116 const std::string& value,
117 int key_code,
118 bool input_missing); 117 bool input_missing);
119 118
120 // Called when new FaviconURL candidates are received. 119 // Called when new FaviconURL candidates are received.
121 void OnFaviconUrlUpdated(const std::vector<FaviconURL>& candidates); 120 void OnFaviconUrlUpdated(const std::vector<FaviconURL>& candidates);
122 121
123 // Called when the page requests a credential. 122 // Called when the page requests a credential.
124 void OnCredentialsRequested(int request_id, 123 void OnCredentialsRequested(int request_id,
125 const GURL& source_url, 124 const GURL& source_url,
126 bool unmediated, 125 bool unmediated,
127 const std::vector<std::string>& federations, 126 const std::vector<std::string>& federations,
(...skipping 245 matching lines...) Expand 10 before | Expand all | Expand 10 after
373 372
374 // Image Fetcher used to images. 373 // Image Fetcher used to images.
375 std::unique_ptr<ImageDataFetcher> image_fetcher_; 374 std::unique_ptr<ImageDataFetcher> image_fetcher_;
376 375
377 DISALLOW_COPY_AND_ASSIGN(WebStateImpl); 376 DISALLOW_COPY_AND_ASSIGN(WebStateImpl);
378 }; 377 };
379 378
380 } // namespace web 379 } // namespace web
381 380
382 #endif // IOS_WEB_WEB_STATE_WEB_STATE_IMPL_H_ 381 #endif // IOS_WEB_WEB_STATE_WEB_STATE_IMPL_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698