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

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

Issue 2918903002: Move IconURLs method from WebFrame to WebLocalFrame (Closed)
Patch Set: s/kFavIcon/kFavicon/g (as suggested in CR feedback from pkotwicz@). Created 3 years, 6 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
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 <stdint.h> 8 #include <stdint.h>
9 9
10 #include <functional> 10 #include <functional>
(...skipping 1104 matching lines...) Expand 10 before | Expand all | Expand 10 after
1115 1115
1116 // Callback function when requesting permission to access the PPAPI broker. 1116 // Callback function when requesting permission to access the PPAPI broker.
1117 // |result| is true if permission was granted. 1117 // |result| is true if permission was granted.
1118 void SendPpapiBrokerPermissionResult(int process_id, 1118 void SendPpapiBrokerPermissionResult(int process_id,
1119 int ppb_broker_route_id, 1119 int ppb_broker_route_id,
1120 bool result); 1120 bool result);
1121 1121
1122 void OnBrowserPluginMessage(RenderFrameHost* render_frame_host, 1122 void OnBrowserPluginMessage(RenderFrameHost* render_frame_host,
1123 const IPC::Message& message); 1123 const IPC::Message& message);
1124 #endif // BUILDFLAG(ENABLE_PLUGINS) 1124 #endif // BUILDFLAG(ENABLE_PLUGINS)
1125 void OnUpdateFaviconURL(RenderViewHostImpl* source, 1125 void OnUpdateFaviconURL(RenderFrameHostImpl* source,
1126 const std::vector<FaviconURL>& candidates); 1126 const std::vector<FaviconURL>& candidates);
1127 void OnFirstVisuallyNonEmptyPaint(RenderViewHostImpl* source); 1127 void OnFirstVisuallyNonEmptyPaint(RenderViewHostImpl* source);
1128 void OnShowValidationMessage(RenderViewHostImpl* source, 1128 void OnShowValidationMessage(RenderViewHostImpl* source,
1129 const gfx::Rect& anchor_in_root_view, 1129 const gfx::Rect& anchor_in_root_view,
1130 const base::string16& main_text, 1130 const base::string16& main_text,
1131 const base::string16& sub_text); 1131 const base::string16& sub_text);
1132 void OnHideValidationMessage(RenderViewHostImpl* source); 1132 void OnHideValidationMessage(RenderViewHostImpl* source);
1133 void OnMoveValidationMessage(RenderViewHostImpl* source, 1133 void OnMoveValidationMessage(RenderViewHostImpl* source,
1134 const gfx::Rect& anchor_in_root_view); 1134 const gfx::Rect& anchor_in_root_view);
1135 1135
(...skipping 499 matching lines...) Expand 10 before | Expand all | Expand 10 after
1635 // Adds/removes a callback called on creation of each new WebContents. 1635 // Adds/removes a callback called on creation of each new WebContents.
1636 static void AddCreatedCallbackForTesting(const CreatedCallback& callback); 1636 static void AddCreatedCallbackForTesting(const CreatedCallback& callback);
1637 static void RemoveCreatedCallbackForTesting(const CreatedCallback& callback); 1637 static void RemoveCreatedCallbackForTesting(const CreatedCallback& callback);
1638 1638
1639 DISALLOW_COPY_AND_ASSIGN(FriendWrapper); 1639 DISALLOW_COPY_AND_ASSIGN(FriendWrapper);
1640 }; 1640 };
1641 1641
1642 } // namespace content 1642 } // namespace content
1643 1643
1644 #endif // CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_ 1644 #endif // CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_
OLDNEW
« no previous file with comments | « content/browser/frame_host/render_frame_host_manager_unittest.cc ('k') | content/browser/web_contents/web_contents_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698