Fix build break
[chromium-blink-merge.git] / chrome / browser / renderer_host / pepper / pepper_flash_browser_host.h
blob5aa815e7519bcf8d25fa5ae84313c56c2bd26083
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #ifndef CHROME_BROWSER_RENDERER_HOST_PEPPER_PEPPER_FLASH_BROWSER_HOST_H_
6 #define CHROME_BROWSER_RENDERER_HOST_PEPPER_PEPPER_FLASH_BROWSER_HOST_H_
8 #include "base/basictypes.h"
9 #include "base/memory/ref_counted.h"
10 #include "base/memory/weak_ptr.h"
11 #include "ppapi/host/host_message_context.h"
12 #include "ppapi/host/resource_host.h"
14 namespace base {
15 class Time;
18 namespace content {
19 class BrowserPpapiHost;
20 class ResourceContext;
23 class CookieSettings;
24 class GURL;
26 namespace chrome {
28 class PepperFlashBrowserHost : public ppapi::host::ResourceHost {
29 public:
30 PepperFlashBrowserHost(content::BrowserPpapiHost* host,
31 PP_Instance instance,
32 PP_Resource resource);
33 virtual ~PepperFlashBrowserHost();
35 // ppapi::host::ResourceHost override.
36 virtual int32_t OnResourceMessageReceived(
37 const IPC::Message& msg,
38 ppapi::host::HostMessageContext* context) OVERRIDE;
40 private:
41 int32_t OnUpdateActivity(ppapi::host::HostMessageContext* host_context);
42 int32_t OnGetLocalTimeZoneOffset(
43 ppapi::host::HostMessageContext* host_context,
44 const base::Time& t);
45 int32_t OnGetLocalDataRestrictions(
46 ppapi::host::HostMessageContext* context);
48 void GetLocalDataRestrictions(ppapi::host::ReplyMessageContext reply_context,
49 const GURL& document_url,
50 const GURL& plugin_url,
51 scoped_refptr<CookieSettings> cookie_settings);
53 content::BrowserPpapiHost* host_;
54 int render_process_id_;
55 // For fetching the Flash LSO settings.
56 scoped_refptr<CookieSettings> cookie_settings_;
57 base::WeakPtrFactory<PepperFlashBrowserHost> weak_factory_;
59 DISALLOW_COPY_AND_ASSIGN(PepperFlashBrowserHost);
62 } // namespace chrome
64 #endif // CHROME_BROWSER_RENDERER_HOST_PEPPER_PEPPER_FLASH_BROWSER_HOST_H_