910e62b5创建于 1月15日历史提交
// Copyright 2014 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#ifndef EXTENSIONS_RENDERER_CONTENT_WATCHER_H_
#define EXTENSIONS_RENDERER_CONTENT_WATCHER_H_

#include <string>
#include <vector>

namespace blink {
class WebString;
}

namespace content {
class RenderFrame;
}

namespace extensions {

// Handles watching the content of WebFrames to notify extensions when they
// match various patterns. This class tracks the set of relevant patterns (set
// by the WatchPages Mojo method) and the set that match on each WebFrame, and
// calls extensions::mojom::LocalFrameHost::WatchedPageChange whenever a
// RenderFrame's set changes.
class ContentWatcher {
 public:
  ContentWatcher();

  ContentWatcher(const ContentWatcher&) = delete;
  ContentWatcher& operator=(const ContentWatcher&) = delete;

  ~ContentWatcher();

  // Handler for the WatchPages Mojo method in extensions.mojom.Renderer
  // interface.
  void OnWatchPages(const std::vector<std::string>& css_selectors);

  void OnRenderFrameCreated(content::RenderFrame* render_frame);

 private:
  // If any of these selectors match on a page, we need to call
  // extensions::mojom::LocalFrameHost::WatchedPageChange to notify the browser.
  std::vector<blink::WebString> css_selectors_;
};

}  // namespace extensions

#endif  // EXTENSIONS_RENDERER_CONTENT_WATCHER_H_