Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(41)

Side by Side Diff: content/renderer/pepper/host_resource_var.h

Issue 633303002: Replace FINAL and OVERRIDE with their C++11 counterparts in content/renderer (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « content/renderer/pepper/host_globals.h ('k') | content/renderer/pepper/host_var_tracker.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef PPAPI_CONTENT_RENDERER_PEPPER_HOST_RESOURCE_VAR_H_ 5 #ifndef PPAPI_CONTENT_RENDERER_PEPPER_HOST_RESOURCE_VAR_H_
6 #define PPAPI_CONTENT_RENDERER_PEPPER_HOST_RESOURCE_VAR_H_ 6 #define PPAPI_CONTENT_RENDERER_PEPPER_HOST_RESOURCE_VAR_H_
7 7
8 #include "base/memory/scoped_ptr.h" 8 #include "base/memory/scoped_ptr.h"
9 #include "ipc/ipc_message.h" 9 #include "ipc/ipc_message.h"
10 #include "ppapi/c/pp_resource.h" 10 #include "ppapi/c/pp_resource.h"
(...skipping 14 matching lines...) Expand all
25 25
26 // Makes a resource var with a pending resource host. 26 // Makes a resource var with a pending resource host.
27 // The |pending_renderer_host_id| is a pending resource host ID in the 27 // The |pending_renderer_host_id| is a pending resource host ID in the
28 // renderer to attach from the plugin. Depending on the type of resource, this 28 // renderer to attach from the plugin. Depending on the type of resource, this
29 // may be 0. The |creation_message| contains additional data needed to create 29 // may be 0. The |creation_message| contains additional data needed to create
30 // the plugin-side resource. Its type depends on the type of resource. 30 // the plugin-side resource. Its type depends on the type of resource.
31 HostResourceVar(int pending_renderer_host_id, 31 HostResourceVar(int pending_renderer_host_id,
32 const IPC::Message& creation_message); 32 const IPC::Message& creation_message);
33 33
34 // ResourceVar override. 34 // ResourceVar override.
35 virtual PP_Resource GetPPResource() const OVERRIDE; 35 virtual PP_Resource GetPPResource() const override;
36 virtual int GetPendingRendererHostId() const OVERRIDE; 36 virtual int GetPendingRendererHostId() const override;
37 virtual int GetPendingBrowserHostId() const OVERRIDE; 37 virtual int GetPendingBrowserHostId() const override;
38 virtual const IPC::Message* GetCreationMessage() const OVERRIDE; 38 virtual const IPC::Message* GetCreationMessage() const override;
39 virtual bool IsPending() const OVERRIDE; 39 virtual bool IsPending() const override;
40 40
41 void set_pending_browser_host_id(int id) { pending_browser_host_id_ = id; } 41 void set_pending_browser_host_id(int id) { pending_browser_host_id_ = id; }
42 42
43 protected: 43 protected:
44 virtual ~HostResourceVar(); 44 virtual ~HostResourceVar();
45 45
46 private: 46 private:
47 // Real resource ID in the plugin. 0 if one has not yet been created 47 // Real resource ID in the plugin. 0 if one has not yet been created
48 // (indicating that there is a pending resource host). 48 // (indicating that there is a pending resource host).
49 PP_Resource pp_resource_; 49 PP_Resource pp_resource_;
50 50
51 // Pending resource host ID in the renderer. 51 // Pending resource host ID in the renderer.
52 int pending_renderer_host_id_; 52 int pending_renderer_host_id_;
53 53
54 // Pending resource host ID in the browser. 54 // Pending resource host ID in the browser.
55 int pending_browser_host_id_; 55 int pending_browser_host_id_;
56 56
57 // If the plugin-side resource has not yet been created, carries a message to 57 // If the plugin-side resource has not yet been created, carries a message to
58 // create a resource of the specific type on the plugin side. Otherwise, NULL. 58 // create a resource of the specific type on the plugin side. Otherwise, NULL.
59 scoped_ptr<IPC::Message> creation_message_; 59 scoped_ptr<IPC::Message> creation_message_;
60 60
61 DISALLOW_COPY_AND_ASSIGN(HostResourceVar); 61 DISALLOW_COPY_AND_ASSIGN(HostResourceVar);
62 }; 62 };
63 63
64 } // namespace content 64 } // namespace content
65 65
66 #endif 66 #endif
OLDNEW
« no previous file with comments | « content/renderer/pepper/host_globals.h ('k') | content/renderer/pepper/host_var_tracker.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698