Commit 8f4c7fc1 authored by mseaborn@chromium.org's avatar mseaborn@chromium.org

NaCl SDK: Remove some unused variables in url_loader.cc example

PNaCl is being upgraded to Clang 3.4, which now warns about unused
declarations inside anonymous namespaces.

BUG=https://code.google.com/p/nativeclient/issues/detail?id=3757
TEST=compile using new PNaCl toolchain
R=binji@chromium.org

Review URL: https://codereview.chromium.org/183743028

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@255149 0039d316-1c4b-4281-b951-d872f2087c98
parent ff672b7b
...@@ -17,11 +17,6 @@ ...@@ -17,11 +17,6 @@
namespace { namespace {
const char* const kLoadUrlMethodId = "getUrl"; const char* const kLoadUrlMethodId = "getUrl";
static const char kMessageArgumentSeparator = ':'; static const char kMessageArgumentSeparator = ':';
// Exception strings. These are passed back to the browser when errors
// happen during property accesses or method calls.
const char* const kExceptionStartFailed = "URLLoaderHandler::Start() failed";
const char* const kExceptionURLNotAString = "URL is not a string";
} // namespace } // namespace
class URLLoaderInstance : public pp::Instance { class URLLoaderInstance : public pp::Instance {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment