blob: 91b0faee8010878da9b441aaefe1650dc48bb1c3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
|
// Copyright (c) 2011 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef CHROME_BROWSER_USER_STYLE_SHEET_WATCHER_H_
#define CHROME_BROWSER_USER_STYLE_SHEET_WATCHER_H_
#pragma once
#include "base/file_path.h"
#include "base/files/file_path_watcher.h"
#include "base/memory/ref_counted.h"
#include "base/memory/scoped_ptr.h"
#include "content/public/browser/browser_thread.h"
#include "content/public/browser/notification_observer.h"
#include "content/public/browser/notification_registrar.h"
#include "googleurl/src/gurl.h"
class Profile;
class UserStyleSheetLoader;
// Watches the user style sheet file and triggers reloads on the file thread
// whenever the file changes.
class UserStyleSheetWatcher
: public base::RefCountedThreadSafe<
UserStyleSheetWatcher,
content::BrowserThread::DeleteOnUIThread>,
public content::NotificationObserver {
public:
UserStyleSheetWatcher(Profile* profile, const FilePath& profile_path);
void Init();
GURL user_style_sheet() const;
// content::NotificationObserver interface
virtual void Observe(int type,
const content::NotificationSource& source,
const content::NotificationDetails& details) OVERRIDE;
private:
friend struct content::BrowserThread::DeleteOnThread<
content::BrowserThread::UI>;
friend class DeleteTask<UserStyleSheetWatcher>;
virtual ~UserStyleSheetWatcher();
// The profile owning us.
Profile* profile_;
// The directory containing User StyleSheets/Custom.css.
FilePath profile_path_;
// The loader object.
scoped_refptr<UserStyleSheetLoader> loader_;
// Watches for changes to the css file so we can reload the style sheet.
scoped_ptr<base::files::FilePathWatcher> file_watcher_;
content::NotificationRegistrar registrar_;
DISALLOW_COPY_AND_ASSIGN(UserStyleSheetWatcher);
};
#endif // CHROME_BROWSER_USER_STYLE_SHEET_WATCHER_H_
|