| Index: content/browser/renderer_host/pepper_message_filter.h
|
| diff --git a/content/browser/renderer_host/pepper_message_filter.h b/content/browser/renderer_host/pepper_message_filter.h
|
| index bace9d3199cd372b040ffd4b86c94406a65c9608..1ef1e50b60719797d1f45855169c220214250a07 100644
|
| --- a/content/browser/renderer_host/pepper_message_filter.h
|
| +++ b/content/browser/renderer_host/pepper_message_filter.h
|
| @@ -11,6 +11,7 @@
|
| #include <vector>
|
|
|
| #include "base/basictypes.h"
|
| +#include "base/file_path.h"
|
| #include "base/memory/linked_ptr.h"
|
| #include "base/memory/scoped_ptr.h"
|
| #include "base/process.h"
|
| @@ -34,6 +35,7 @@ class ListValue;
|
| }
|
|
|
| namespace content {
|
| +class BrowserContext;
|
| class ResourceContext;
|
| }
|
|
|
| @@ -63,7 +65,7 @@ class PepperMessageFilter
|
| // provided for sanity checking).
|
| PepperMessageFilter(ProcessType type,
|
| int process_id,
|
| - content::ResourceContext* resource_context);
|
| + content::BrowserContext* browser_context);
|
|
|
| // Constructor when used in the context of a PPAPI process (the argument is
|
| // provided for sanity checking).
|
| @@ -252,6 +254,8 @@ class PepperMessageFilter
|
|
|
| NetworkMonitorIdSet network_monitor_ids_;
|
|
|
| + FilePath browser_path_;
|
| +
|
| DISALLOW_COPY_AND_ASSIGN(PepperMessageFilter);
|
| };
|
|
|
|
|