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

Side by Side Diff: webkit/glue/webframe_impl.h

Issue 9712: AppCachePlumbing (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 11 years, 8 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 Apple Computer, Inc. All rights reserved. 2 * Copyright (C) 2006 Apple Computer, 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 5 * modification, are permitted provided that the following conditions
6 * are met: 6 * are met:
7 * 1. Redistributions of source code must retain the above copyright 7 * 1. Redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer. 8 * notice, this list of conditions and the following disclaimer.
9 * 2. Redistributions in binary form must reproduce the above copyright 9 * 2. Redistributions in binary form must reproduce the above copyright
10 * notice, this list of conditions and the following disclaimer in the 10 * notice, this list of conditions and the following disclaimer in the
(...skipping 163 matching lines...) Expand 10 before | Expand all | Expand 10 after
174 174
175 virtual void ClosePage(); 175 virtual void ClosePage();
176 176
177 virtual gfx::Size ScrollOffset() const; 177 virtual gfx::Size ScrollOffset() const;
178 178
179 virtual bool BeginPrint(const gfx::Size& page_size_px, 179 virtual bool BeginPrint(const gfx::Size& page_size_px,
180 int* page_count); 180 int* page_count);
181 virtual float PrintPage(int page, skia::PlatformCanvas* canvas); 181 virtual float PrintPage(int page, skia::PlatformCanvas* canvas);
182 virtual void EndPrint(); 182 virtual void EndPrint();
183 183
184 virtual void SelectAppCacheWithoutManifest();
185 virtual void SelectAppCacheWithManifest(const GURL& manifest_url);
186 virtual WebAppCacheContext* GetAppCacheContext() const {
187 return app_cache_context_.get();
188 }
189
184 PassRefPtr<WebCore::Frame> CreateChildFrame( 190 PassRefPtr<WebCore::Frame> CreateChildFrame(
185 const WebCore::FrameLoadRequest&, 191 const WebCore::FrameLoadRequest&,
186 WebCore::HTMLFrameOwnerElement* owner_element); 192 WebCore::HTMLFrameOwnerElement* owner_element);
187 193
188 // WebFrameImpl 194 // WebFrameImpl
189 void Layout(); 195 void Layout();
190 void Paint(skia::PlatformCanvas* canvas, const gfx::Rect& rect); 196 void Paint(skia::PlatformCanvas* canvas, const gfx::Rect& rect);
191 197
192 bool IsLoading(); 198 bool IsLoading();
193 199
(...skipping 211 matching lines...) Expand 10 before | Expand all | Expand 10 after
405 const WebCore::SubstituteData& data, 411 const WebCore::SubstituteData& data,
406 bool replace); 412 bool replace);
407 413
408 // Clears the map of password listeners. 414 // Clears the map of password listeners.
409 void ClearPasswordListeners(); 415 void ClearPasswordListeners();
410 416
411 // Valid between calls to BeginPrint() and EndPrint(). Containts the print 417 // Valid between calls to BeginPrint() and EndPrint(). Containts the print
412 // information. Is used by PrintPage(). 418 // information. Is used by PrintPage().
413 scoped_ptr<ChromePrintContext> print_context_; 419 scoped_ptr<ChromePrintContext> print_context_;
414 420
421 // The app cache context for this frame.
422 scoped_ptr<WebAppCacheContext> app_cache_context_;
423
415 // The input fields that are interested in edit events and their associated 424 // The input fields that are interested in edit events and their associated
416 // listeners. 425 // listeners.
417 typedef HashMap<RefPtr<WebCore::HTMLInputElement>, 426 typedef HashMap<RefPtr<WebCore::HTMLInputElement>,
418 webkit_glue::PasswordAutocompleteListener*> PasswordListenerMap; 427 webkit_glue::PasswordAutocompleteListener*> PasswordListenerMap;
419 PasswordListenerMap password_listeners_; 428 PasswordListenerMap password_listeners_;
420 429
421 DISALLOW_COPY_AND_ASSIGN(WebFrameImpl); 430 DISALLOW_COPY_AND_ASSIGN(WebFrameImpl);
422 }; 431 };
423 432
424 #endif // WEBKIT_GLUE_WEBFRAME_IMPL_H_ 433 #endif // WEBKIT_GLUE_WEBFRAME_IMPL_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698