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

Side by Side Diff: content/browser/web_contents/web_contents_impl.h

Issue 11270018: [autofill] Adding new API to request an interactive autocomplete UI flow. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 1 month 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 | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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 CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_ 5 #ifndef CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_
6 #define CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_ 6 #define CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_
7 7
8 #include <map> 8 #include <map>
9 #include <set> 9 #include <set>
10 #include <string> 10 #include <string>
(...skipping 413 matching lines...) Expand 10 before | Expand all | Expand 10 after
424 bool user_gesture) OVERRIDE; 424 bool user_gesture) OVERRIDE;
425 virtual void ShowCreatedWidget(int route_id, 425 virtual void ShowCreatedWidget(int route_id,
426 const gfx::Rect& initial_pos) OVERRIDE; 426 const gfx::Rect& initial_pos) OVERRIDE;
427 virtual void ShowCreatedFullscreenWidget(int route_id) OVERRIDE; 427 virtual void ShowCreatedFullscreenWidget(int route_id) OVERRIDE;
428 virtual void ShowContextMenu( 428 virtual void ShowContextMenu(
429 const content::ContextMenuParams& params, 429 const content::ContextMenuParams& params,
430 content::ContextMenuSourceType type) OVERRIDE; 430 content::ContextMenuSourceType type) OVERRIDE;
431 virtual void RequestMediaAccessPermission( 431 virtual void RequestMediaAccessPermission(
432 const content::MediaStreamRequest* request, 432 const content::MediaStreamRequest* request,
433 const content::MediaResponseCallback& callback) OVERRIDE; 433 const content::MediaResponseCallback& callback) OVERRIDE;
434 virtual void RequestAutocomplete() OVERRIDE;
434 435
435 #if defined(OS_ANDROID) 436 #if defined(OS_ANDROID)
436 virtual void AttachLayer(WebKit::WebLayer* layer) OVERRIDE; 437 virtual void AttachLayer(WebKit::WebLayer* layer) OVERRIDE;
437 virtual void RemoveLayer(WebKit::WebLayer* layer) OVERRIDE; 438 virtual void RemoveLayer(WebKit::WebLayer* layer) OVERRIDE;
438 #endif 439 #endif
439 440
440 // RenderWidgetHostDelegate -------------------------------------------------- 441 // RenderWidgetHostDelegate --------------------------------------------------
441 442
442 virtual void RenderWidgetDeleted( 443 virtual void RenderWidgetDeleted(
443 content::RenderWidgetHostImpl* render_widget_host) OVERRIDE; 444 content::RenderWidgetHostImpl* render_widget_host) OVERRIDE;
(...skipping 430 matching lines...) Expand 10 before | Expand all | Expand 10 after
874 content::RenderViewHost* message_source_; 875 content::RenderViewHost* message_source_;
875 876
876 // All live RenderWidgetHostImpls that are created by this object and may 877 // All live RenderWidgetHostImpls that are created by this object and may
877 // outlive it. 878 // outlive it.
878 std::set<content::RenderWidgetHostImpl*> created_widgets_; 879 std::set<content::RenderWidgetHostImpl*> created_widgets_;
879 880
880 DISALLOW_COPY_AND_ASSIGN(WebContentsImpl); 881 DISALLOW_COPY_AND_ASSIGN(WebContentsImpl);
881 }; 882 };
882 883
883 #endif // CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_ 884 #endif // CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698