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

Side by Side Diff: content/renderer/render_frame_impl.h

Issue 331793005: Notify the change of brand color from renderer to Brower (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: sync Created 6 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
« no previous file with comments | « content/public/browser/web_contents_observer.h ('k') | content/renderer/render_frame_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_RENDERER_RENDER_FRAME_IMPL_H_ 5 #ifndef CONTENT_RENDERER_RENDER_FRAME_IMPL_H_
6 #define CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ 6 #define CONTENT_RENDERER_RENDER_FRAME_IMPL_H_
7 7
8 #include <vector> 8 #include <vector>
9 9
10 #include "base/basictypes.h" 10 #include "base/basictypes.h"
(...skipping 291 matching lines...) Expand 10 before | Expand all | Expand 10 after
302 blink::WebIconURL::Type icon_type); 302 blink::WebIconURL::Type icon_type);
303 virtual void didFinishDocumentLoad(blink::WebLocalFrame* frame); 303 virtual void didFinishDocumentLoad(blink::WebLocalFrame* frame);
304 virtual void didHandleOnloadEvents(blink::WebLocalFrame* frame); 304 virtual void didHandleOnloadEvents(blink::WebLocalFrame* frame);
305 virtual void didFailLoad(blink::WebLocalFrame* frame, 305 virtual void didFailLoad(blink::WebLocalFrame* frame,
306 const blink::WebURLError& error); 306 const blink::WebURLError& error);
307 virtual void didFinishLoad(blink::WebLocalFrame* frame); 307 virtual void didFinishLoad(blink::WebLocalFrame* frame);
308 virtual void didNavigateWithinPage(blink::WebLocalFrame* frame, 308 virtual void didNavigateWithinPage(blink::WebLocalFrame* frame,
309 const blink::WebHistoryItem& item, 309 const blink::WebHistoryItem& item,
310 blink::WebHistoryCommitType commit_type); 310 blink::WebHistoryCommitType commit_type);
311 virtual void didUpdateCurrentHistoryItem(blink::WebLocalFrame* frame); 311 virtual void didUpdateCurrentHistoryItem(blink::WebLocalFrame* frame);
312 virtual void didChangeBrandColor();
312 virtual blink::WebNotificationPresenter* notificationPresenter(); 313 virtual blink::WebNotificationPresenter* notificationPresenter();
313 virtual void didChangeSelection(bool is_empty_selection); 314 virtual void didChangeSelection(bool is_empty_selection);
314 virtual blink::WebColorChooser* createColorChooser( 315 virtual blink::WebColorChooser* createColorChooser(
315 blink::WebColorChooserClient* client, 316 blink::WebColorChooserClient* client,
316 const blink::WebColor& initial_color, 317 const blink::WebColor& initial_color,
317 const blink::WebVector<blink::WebColorSuggestion>& suggestions); 318 const blink::WebVector<blink::WebColorSuggestion>& suggestions);
318 virtual void runModalAlertDialog(const blink::WebString& message); 319 virtual void runModalAlertDialog(const blink::WebString& message);
319 virtual bool runModalConfirmDialog(const blink::WebString& message); 320 virtual bool runModalConfirmDialog(const blink::WebString& message);
320 virtual bool runModalPromptDialog(const blink::WebString& message, 321 virtual bool runModalPromptDialog(const blink::WebString& message,
321 const blink::WebString& default_value, 322 const blink::WebString& default_value,
(...skipping 316 matching lines...) Expand 10 before | Expand all | Expand 10 after
638 ScreenOrientationDispatcher* screen_orientation_dispatcher_; 639 ScreenOrientationDispatcher* screen_orientation_dispatcher_;
639 640
640 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; 641 base::WeakPtrFactory<RenderFrameImpl> weak_factory_;
641 642
642 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); 643 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl);
643 }; 644 };
644 645
645 } // namespace content 646 } // namespace content
646 647
647 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ 648 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_
OLDNEW
« no previous file with comments | « content/public/browser/web_contents_observer.h ('k') | content/renderer/render_frame_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698