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

Side by Side Diff: Source/core/loader/EmptyClients.h

Issue 329943004: Implementation of brand-color (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: 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 | Annotate | Revision Log
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2006 Eric Seidel (eric@webkit.org) 2 * Copyright (C) 2006 Eric Seidel (eric@webkit.org)
3 * Copyright (C) 2008, 2009, 2010, 2011, 2012 Apple Inc. All rights reserved. 3 * Copyright (C) 2008, 2009, 2010, 2011, 2012 Apple Inc. All rights reserved.
4 * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies). 4 * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies).
5 * Copyright (C) 2012 Samsung Electronics. All rights reserved. 5 * Copyright (C) 2012 Samsung Electronics. All rights reserved.
6 * 6 *
7 * Redistribution and use in source and binary forms, with or without 7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions 8 * modification, are permitted provided that the following conditions
9 * are met: 9 * are met:
10 * 1. Redistributions of source code must retain the above copyright 10 * 1. Redistributions of source code must retain the above copyright
(...skipping 181 matching lines...) Expand 10 before | Expand all | Expand 10 after
192 virtual void dispatchWillClose() OVERRIDE { } 192 virtual void dispatchWillClose() OVERRIDE { }
193 virtual void dispatchDidStartProvisionalLoad() OVERRIDE { } 193 virtual void dispatchDidStartProvisionalLoad() OVERRIDE { }
194 virtual void dispatchDidReceiveTitle(const String&) OVERRIDE { } 194 virtual void dispatchDidReceiveTitle(const String&) OVERRIDE { }
195 virtual void dispatchDidChangeIcons(IconType) OVERRIDE { } 195 virtual void dispatchDidChangeIcons(IconType) OVERRIDE { }
196 virtual void dispatchDidCommitLoad(LocalFrame*, HistoryItem*, HistoryCommitT ype) OVERRIDE { } 196 virtual void dispatchDidCommitLoad(LocalFrame*, HistoryItem*, HistoryCommitT ype) OVERRIDE { }
197 virtual void dispatchDidFailProvisionalLoad(const ResourceError&) OVERRIDE { } 197 virtual void dispatchDidFailProvisionalLoad(const ResourceError&) OVERRIDE { }
198 virtual void dispatchDidFailLoad(const ResourceError&) OVERRIDE { } 198 virtual void dispatchDidFailLoad(const ResourceError&) OVERRIDE { }
199 virtual void dispatchDidFinishDocumentLoad() OVERRIDE { } 199 virtual void dispatchDidFinishDocumentLoad() OVERRIDE { }
200 virtual void dispatchDidFinishLoad() OVERRIDE { } 200 virtual void dispatchDidFinishLoad() OVERRIDE { }
201 virtual void dispatchDidFirstVisuallyNonEmptyLayout() OVERRIDE { } 201 virtual void dispatchDidFirstVisuallyNonEmptyLayout() OVERRIDE { }
202 virtual void dispatchDidChangeBrandColor() OVERRIDE { };
202 203
203 virtual NavigationPolicy decidePolicyForNavigation(const ResourceRequest&, D ocumentLoader*, NavigationPolicy) OVERRIDE; 204 virtual NavigationPolicy decidePolicyForNavigation(const ResourceRequest&, D ocumentLoader*, NavigationPolicy) OVERRIDE;
204 205
205 virtual void dispatchWillSendSubmitEvent(HTMLFormElement*) OVERRIDE; 206 virtual void dispatchWillSendSubmitEvent(HTMLFormElement*) OVERRIDE;
206 virtual void dispatchWillSubmitForm(HTMLFormElement*) OVERRIDE; 207 virtual void dispatchWillSubmitForm(HTMLFormElement*) OVERRIDE;
207 208
208 virtual void didStartLoading(LoadStartType) OVERRIDE { } 209 virtual void didStartLoading(LoadStartType) OVERRIDE { }
209 virtual void progressEstimateChanged(double) OVERRIDE { } 210 virtual void progressEstimateChanged(double) OVERRIDE { }
210 virtual void didStopLoading() OVERRIDE { } 211 virtual void didStopLoading() OVERRIDE { }
211 212
(...skipping 118 matching lines...) Expand 10 before | Expand all | Expand 10 after
330 public: 331 public:
331 virtual PassOwnPtr<StorageNamespace> createSessionStorageNamespace() OVERRID E; 332 virtual PassOwnPtr<StorageNamespace> createSessionStorageNamespace() OVERRID E;
332 virtual bool canAccessStorage(LocalFrame*, StorageType) const OVERRIDE { ret urn false; } 333 virtual bool canAccessStorage(LocalFrame*, StorageType) const OVERRIDE { ret urn false; }
333 }; 334 };
334 335
335 void fillWithEmptyClients(Page::PageClients&); 336 void fillWithEmptyClients(Page::PageClients&);
336 337
337 } 338 }
338 339
339 #endif // EmptyClients_h 340 #endif // EmptyClients_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698