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

Unified Diff: chrome/browser/in_process_webkit/webkit_thread.h

Issue 192003: Refactor DOM Storage to pave the way for events and locking. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 11 years, 3 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/in_process_webkit/webkit_thread.h
===================================================================
--- chrome/browser/in_process_webkit/webkit_thread.h (revision 25608)
+++ chrome/browser/in_process_webkit/webkit_thread.h (working copy)
@@ -49,14 +49,15 @@
class InternalWebKitThread : public ChromeThread {
public:
InternalWebKitThread();
- virtual ~InternalWebKitThread() { }
+ virtual ~InternalWebKitThread();
// Does the actual initialization and shutdown of WebKit. Called at the
// beginning and end of the thread's lifetime.
virtual void Init();
virtual void CleanUp();
private:
- BrowserWebKitClientImpl* webkit_client_;
+ // The WebKitClient implementation. Only access on WebKit thread.
+ scoped_ptr<BrowserWebKitClientImpl> webkit_client_;
};
// Returns the WebKit thread's message loop or NULL if we're in
« no previous file with comments | « chrome/browser/in_process_webkit/webkit_context.cc ('k') | chrome/browser/in_process_webkit/webkit_thread.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698