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

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

Issue 1258273006: Remove page id from title and state updating. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@switch
Patch Set: comment nit Created 4 years, 2 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
« no previous file with comments | « no previous file | content/browser/frame_host/interstitial_page_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_INTERSTITIAL_PAGE_IMPL_H_ 5 #ifndef CONTENT_BROWSER_FRAME_HOST_INTERSTITIAL_PAGE_IMPL_H_
6 #define CONTENT_BROWSER_FRAME_HOST_INTERSTITIAL_PAGE_IMPL_H_ 6 #define CONTENT_BROWSER_FRAME_HOST_INTERSTITIAL_PAGE_IMPL_H_
7 7
8 #include <stdint.h> 8 #include <stdint.h>
9 9
10 #include <memory> 10 #include <memory>
(...skipping 95 matching lines...) Expand 10 before | Expand all | Expand 10 after
106 // NotificationObserver method: 106 // NotificationObserver method:
107 void Observe(int type, 107 void Observe(int type,
108 const NotificationSource& source, 108 const NotificationSource& source,
109 const NotificationDetails& details) override; 109 const NotificationDetails& details) override;
110 110
111 // RenderFrameHostDelegate implementation: 111 // RenderFrameHostDelegate implementation:
112 bool OnMessageReceived(RenderFrameHost* render_frame_host, 112 bool OnMessageReceived(RenderFrameHost* render_frame_host,
113 const IPC::Message& message) override; 113 const IPC::Message& message) override;
114 void RenderFrameCreated(RenderFrameHost* render_frame_host) override; 114 void RenderFrameCreated(RenderFrameHost* render_frame_host) override;
115 void UpdateTitle(RenderFrameHost* render_frame_host, 115 void UpdateTitle(RenderFrameHost* render_frame_host,
116 int32_t page_id,
117 const base::string16& title, 116 const base::string16& title,
118 base::i18n::TextDirection title_direction) override; 117 base::i18n::TextDirection title_direction) override;
119 InterstitialPage* GetAsInterstitialPage() override; 118 InterstitialPage* GetAsInterstitialPage() override;
120 AccessibilityMode GetAccessibilityMode() const override; 119 AccessibilityMode GetAccessibilityMode() const override;
121 void Cut() override; 120 void Cut() override;
122 void Copy() override; 121 void Copy() override;
123 void Paste() override; 122 void Paste() override;
124 void SelectAll() override; 123 void SelectAll() override;
125 124
126 // RenderViewHostDelegate implementation: 125 // RenderViewHostDelegate implementation:
(...skipping 181 matching lines...) Expand 10 before | Expand all | Expand 10 after
308 scoped_refptr<SessionStorageNamespace> session_storage_namespace_; 307 scoped_refptr<SessionStorageNamespace> session_storage_namespace_;
309 308
310 base::WeakPtrFactory<InterstitialPageImpl> weak_ptr_factory_; 309 base::WeakPtrFactory<InterstitialPageImpl> weak_ptr_factory_;
311 310
312 DISALLOW_COPY_AND_ASSIGN(InterstitialPageImpl); 311 DISALLOW_COPY_AND_ASSIGN(InterstitialPageImpl);
313 }; 312 };
314 313
315 } // namespace content 314 } // namespace content
316 315
317 #endif // CONTENT_BROWSER_FRAME_HOST_INTERSTITIAL_PAGE_IMPL_H_ 316 #endif // CONTENT_BROWSER_FRAME_HOST_INTERSTITIAL_PAGE_IMPL_H_
OLDNEW
« no previous file with comments | « no previous file | content/browser/frame_host/interstitial_page_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698