From 5fd9834def74734fe62be06ad9914d0656534837 Mon Sep 17 00:00:00 2001 From: "mpcomplete@chromium.org" Date: Wed, 26 Aug 2009 17:18:14 +0000 Subject: Re-try r24372 - Delay request loading until all user scripts that request depends on are ready. UMR should be fixed after setting new appcache variable. BUG=no TEST=no Review URL: http://codereview.chromium.org/173482 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@24459 0039d316-1c4b-4281-b951-d872f2087c98 --- chrome/browser/extensions/user_script_master.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'chrome/browser/extensions/user_script_master.h') diff --git a/chrome/browser/extensions/user_script_master.h b/chrome/browser/extensions/user_script_master.h index 557032e..56aab84 100644 --- a/chrome/browser/extensions/user_script_master.h +++ b/chrome/browser/extensions/user_script_master.h @@ -28,7 +28,7 @@ class UserScriptMaster : public base::RefCounted, // script-reloading worker on as well as the path the scripts live in. // These are normally the file thread and a directory inside the profile. UserScriptMaster(MessageLoop* worker, const FilePath& script_dir); - ~UserScriptMaster(); + virtual ~UserScriptMaster(); // Add a watched directory. All scripts will be reloaded when any file in // this directory changes. @@ -36,7 +36,7 @@ class UserScriptMaster : public base::RefCounted, // Kicks off a process on the file thread to reload scripts from disk // into a new chunk of shared memory and notify renderers. - void StartScan(); + virtual void StartScan(); // Gets the segment of shared memory for the scripts. base::SharedMemory* GetSharedMemory() const { -- cgit v1.1