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

Unified Diff: chrome/renderer/external_host_bindings.h

Issue 10382059: Quote CppBoundClass/CppVariant in namespace. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix a long line Created 8 years, 7 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | chrome/renderer/external_host_bindings.cc » ('j') | webkit/glue/cpp_binding_example.cc » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/renderer/external_host_bindings.h
diff --git a/chrome/renderer/external_host_bindings.h b/chrome/renderer/external_host_bindings.h
index 9df67bd74afc19bee6d0a1fb66e61e91f35a0e04..6f98925fe83829726e6c6ce6c50e51b3e2b6b0e4 100644
--- a/chrome/renderer/external_host_bindings.h
+++ b/chrome/renderer/external_host_bindings.h
@@ -1,4 +1,4 @@
-// Copyright (c) 2011 The Chromium Authors. All rights reserved.
+// Copyright (c) 2012 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
@@ -14,7 +14,7 @@
//
// We expose one function, for sending a message to the external host:
// postMessage(String message[, String target]);
-class ExternalHostBindings : public CppBoundClass {
+class ExternalHostBindings : public webkit_glue::CppBoundClass {
public:
ExternalHostBindings(IPC::Message::Sender* sender, int routing_id);
virtual ~ExternalHostBindings();
@@ -35,9 +35,10 @@ class ExternalHostBindings : public CppBoundClass {
bool CreateMessageEvent(NPObject** message_event);
// The postMessage() function provided to Javascript.
- void PostMessage(const CppArgumentList& args, CppVariant* result);
+ void PostMessage(const webkit_glue::CppArgumentList& args,
+ webkit_glue::CppVariant* result);
- CppVariant on_message_handler_;
+ webkit_glue::CppVariant on_message_handler_;
WebKit::WebFrame* frame_;
IPC::Message::Sender* sender_;
int routing_id_;
« no previous file with comments | « no previous file | chrome/renderer/external_host_bindings.cc » ('j') | webkit/glue/cpp_binding_example.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698