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

Side by Side Diff: Source/web/ApplicationCacheHostInternal.h

Issue 20300002: Fix trailing whitespace in .cpp, .h, and .idl files (ex. Source/core) (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 5 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) 2010 Google Inc. All rights reserved. 2 * Copyright (C) 2010 Google Inc. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions are 5 * modification, are permitted provided that the following conditions are
6 * met: 6 * met:
7 * 7 *
8 * * Redistributions of source code must retain the above copyright 8 * * Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 9 * notice, this list of conditions and the following disclaimer.
10 * * Redistributions in binary form must reproduce the above 10 * * Redistributions in binary form must reproduce the above
(...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after
52 virtual void didChangeCacheAssociation() 52 virtual void didChangeCacheAssociation()
53 { 53 {
54 // FIXME: Prod the inspector to update it's notion of what cache the pag e is using. 54 // FIXME: Prod the inspector to update it's notion of what cache the pag e is using.
55 } 55 }
56 56
57 virtual void notifyEventListener(WebKit::WebApplicationCacheHost::EventID ev entID) 57 virtual void notifyEventListener(WebKit::WebApplicationCacheHost::EventID ev entID)
58 { 58 {
59 m_innerHost->notifyDOMApplicationCache(static_cast<ApplicationCacheHost: :EventID>(eventID), 0, 0); 59 m_innerHost->notifyDOMApplicationCache(static_cast<ApplicationCacheHost: :EventID>(eventID), 0, 0);
60 } 60 }
61 61
62 virtual void notifyProgressEventListener(const WebKit::WebURL&, int progress Total, int progressDone) 62 virtual void notifyProgressEventListener(const WebKit::WebURL&, int progress Total, int progressDone)
63 { 63 {
64 m_innerHost->notifyDOMApplicationCache(ApplicationCacheHost::PROGRESS_EV ENT, progressTotal, progressDone); 64 m_innerHost->notifyDOMApplicationCache(ApplicationCacheHost::PROGRESS_EV ENT, progressTotal, progressDone);
65 } 65 }
66 66
67 static WebKit::WebApplicationCacheHost* toWebApplicationCacheHost(Applicatio nCacheHost* innerHost) 67 static WebKit::WebApplicationCacheHost* toWebApplicationCacheHost(Applicatio nCacheHost* innerHost)
68 { 68 {
69 if (innerHost && innerHost->m_internal) 69 if (innerHost && innerHost->m_internal)
70 return innerHost->m_internal->m_outerHost.get(); 70 return innerHost->m_internal->m_outerHost.get();
71 return 0; 71 return 0;
72 } 72 }
73 73
74 private: 74 private:
75 friend class ApplicationCacheHost; 75 friend class ApplicationCacheHost;
76 ApplicationCacheHost* m_innerHost; 76 ApplicationCacheHost* m_innerHost;
77 OwnPtr<WebKit::WebApplicationCacheHost> m_outerHost; 77 OwnPtr<WebKit::WebApplicationCacheHost> m_outerHost;
78 }; 78 };
79 79
80 } 80 }
OLDNEW
« no previous file with comments | « Source/modules/webdatabase/SQLTransactionStateMachine.cpp ('k') | Source/web/AssociatedURLLoader.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698