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

Side by Side Diff: content/browser/frame_host/render_frame_host_impl.h

Issue 683563003: Remove page id from title updating. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 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
« no previous file with comments | « no previous file | content/browser/frame_host/render_frame_host_impl.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 CONTENT_BROWSER_FRAME_HOST_RENDER_FRAME_HOST_IMPL_H_ 5 #ifndef CONTENT_BROWSER_FRAME_HOST_RENDER_FRAME_HOST_IMPL_H_
6 #define CONTENT_BROWSER_FRAME_HOST_RENDER_FRAME_HOST_IMPL_H_ 6 #define CONTENT_BROWSER_FRAME_HOST_RENDER_FRAME_HOST_IMPL_H_
7 7
8 #include <map> 8 #include <map>
9 #include <vector> 9 #include <vector>
10 10
(...skipping 417 matching lines...) Expand 10 before | Expand all | Expand 10 after
428 void OnShowDesktopNotification( 428 void OnShowDesktopNotification(
429 int notification_id, 429 int notification_id,
430 const ShowDesktopNotificationHostMsgParams& params); 430 const ShowDesktopNotificationHostMsgParams& params);
431 void OnCancelDesktopNotification(int notification_id); 431 void OnCancelDesktopNotification(int notification_id);
432 void OnTextSurroundingSelectionResponse(const base::string16& content, 432 void OnTextSurroundingSelectionResponse(const base::string16& content,
433 size_t start_offset, 433 size_t start_offset,
434 size_t end_offset); 434 size_t end_offset);
435 void OnDidAccessInitialDocument(); 435 void OnDidAccessInitialDocument();
436 void OnDidDisownOpener(); 436 void OnDidDisownOpener();
437 void OnDidAssignPageId(int32 page_id); 437 void OnDidAssignPageId(int32 page_id);
438 void OnUpdateTitle(int32 page_id, 438 void OnUpdateTitle(const base::string16& title,
439 const base::string16& title,
440 blink::WebTextDirection title_direction); 439 blink::WebTextDirection title_direction);
441 void OnUpdateEncoding(const std::string& encoding); 440 void OnUpdateEncoding(const std::string& encoding);
442 void OnBeginNavigation(const FrameHostMsg_BeginNavigation_Params& params, 441 void OnBeginNavigation(const FrameHostMsg_BeginNavigation_Params& params,
443 const CommonNavigationParams& common_params); 442 const CommonNavigationParams& common_params);
444 void OnAccessibilityEvents( 443 void OnAccessibilityEvents(
445 const std::vector<AccessibilityHostMsg_EventParams>& params, 444 const std::vector<AccessibilityHostMsg_EventParams>& params,
446 int reset_token); 445 int reset_token);
447 void OnAccessibilityLocationChanges( 446 void OnAccessibilityLocationChanges(
448 const std::vector<AccessibilityHostMsg_LocationChangeParams>& params); 447 const std::vector<AccessibilityHostMsg_LocationChangeParams>& params);
449 448
(...skipping 146 matching lines...) Expand 10 before | Expand all | Expand 10 after
596 595
597 // NOTE: This must be the last member. 596 // NOTE: This must be the last member.
598 base::WeakPtrFactory<RenderFrameHostImpl> weak_ptr_factory_; 597 base::WeakPtrFactory<RenderFrameHostImpl> weak_ptr_factory_;
599 598
600 DISALLOW_COPY_AND_ASSIGN(RenderFrameHostImpl); 599 DISALLOW_COPY_AND_ASSIGN(RenderFrameHostImpl);
601 }; 600 };
602 601
603 } // namespace content 602 } // namespace content
604 603
605 #endif // CONTENT_BROWSER_FRAME_HOST_RENDER_FRAME_HOST_IMPL_H_ 604 #endif // CONTENT_BROWSER_FRAME_HOST_RENDER_FRAME_HOST_IMPL_H_
OLDNEW
« no previous file with comments | « no previous file | content/browser/frame_host/render_frame_host_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698