diff options
author | brettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-08-01 21:47:04 +0000 |
---|---|---|
committer | brettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-08-01 21:47:04 +0000 |
commit | ce701cd1471af1386f770cf18b25b7785d94d0b5 (patch) | |
tree | 541964400dcbd933310e25bcdc1e4aea08d88a1b /webkit/plugins/ppapi/ppb_uma_private_impl.cc | |
parent | 3a3a6f42941903cb6af8c5df2e6ebdfd9e0b57cf (diff) | |
download | chromium_src-ce701cd1471af1386f770cf18b25b7785d94d0b5.zip chromium_src-ce701cd1471af1386f770cf18b25b7785d94d0b5.tar.gz chromium_src-ce701cd1471af1386f770cf18b25b7785d94d0b5.tar.bz2 |
Move Var and StringVar to the ppapi/shared_impl so they can be used in the
proxy. This does not, however, actually use these in the proxy yet, I'll do
that in a subsequent pass.
ObjectVar is now renamed NPObjectVar and continues to be in webkit/plugins
since it uses NPObjects. There will be a corresponding future class in the
proxy for proxied objects.
The TryCatch that was in var.h is now in npapi_glue.h
Most of the rest of the change is updating namespaces.
TEST=unit tests
BUG=none
Review URL: http://codereview.chromium.org/7488062
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@94986 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'webkit/plugins/ppapi/ppb_uma_private_impl.cc')
-rw-r--r-- | webkit/plugins/ppapi/ppb_uma_private_impl.cc | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/webkit/plugins/ppapi/ppb_uma_private_impl.cc b/webkit/plugins/ppapi/ppb_uma_private_impl.cc index f08e1df..10807cb 100644 --- a/webkit/plugins/ppapi/ppb_uma_private_impl.cc +++ b/webkit/plugins/ppapi/ppb_uma_private_impl.cc @@ -7,8 +7,10 @@ #include "base/metrics/histogram.h" #include "ppapi/c/pp_var.h" #include "ppapi/c/private/ppb_uma_private.h" +#include "ppapi/shared_impl/var.h" #include "webkit/glue/webkit_glue.h" -#include "webkit/plugins/ppapi/var.h" + +using ppapi::StringVar; namespace webkit { namespace ppapi { |