#ifndef EXTENSIONS_BROWSER_APP_WINDOW_APP_WINDOW_CONTENTS_H_
#define EXTENSIONS_BROWSER_APP_WINDOW_APP_WINDOW_CONTENTS_H_
#include <stdint.h>
#include <memory>
#include "base/memory/raw_ptr.h"
#include "content/public/browser/web_contents_observer.h"
#include "extensions/browser/app_window/app_window.h"
#include "url/gurl.h"
namespace content {
class BrowserContext;
class RenderFrameHost;
}
namespace extensions {
class AppWindowContentsImpl : public AppWindowContents,
public content::WebContentsObserver { … };
}
#endif