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

Unified Diff: content/browser/renderer_host/text_input_client_message_filter.h

Issue 11343017: Move remaining files in content\browser\renderer_host to content namespace. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: fix mac Created 8 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 side-by-side diff with in-line comments
Download patch
Index: content/browser/renderer_host/text_input_client_message_filter.h
===================================================================
--- content/browser/renderer_host/text_input_client_message_filter.h (revision 164665)
+++ content/browser/renderer_host/text_input_client_message_filter.h (working copy)
@@ -16,15 +16,17 @@
class Range;
}
+namespace content {
+
// This is a browser-side message filter that lives on the IO thread to handle
// replies to messages sent by the TextInputClientMac. See
// content/browser/renderer_host/text_input_client_mac.h for more information.
class CONTENT_EXPORT TextInputClientMessageFilter
- : public content::BrowserMessageFilter {
+ : public BrowserMessageFilter {
public:
explicit TextInputClientMessageFilter(int child_id);
- // content::BrowserMessageFilter override:
+ // BrowserMessageFilter override:
virtual bool OnMessageReceived(const IPC::Message& message,
bool* message_was_ok) OVERRIDE;
@@ -44,4 +46,6 @@
DISALLOW_COPY_AND_ASSIGN(TextInputClientMessageFilter);
};
+} // namespace content
+
#endif // CONTENT_BROWSER_RENDERER_HOST_TEXT_INPUT_CLIENT_MESSAGE_FILTER_H_

Powered by Google App Engine
This is Rietveld 408576698