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

Side by Side Diff: chrome/browser/renderer_host/render_widget_host.h

Issue 155905: Separates ipc code from common (http://crbug.com/16829) (Closed)
Patch Set: Fixes reference to 'common_message_traits' it's actually 'common_param_traits' Created 11 years, 5 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
OLDNEW
1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2009 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 CHROME_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_H_ 5 #ifndef CHROME_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_H_
6 #define CHROME_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_H_ 6 #define CHROME_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_H_
7 7
8 #include <queue> 8 #include <queue>
9 #include <vector> 9 #include <vector>
10 10
11 #include "base/process.h" 11 #include "base/process.h"
12 #include "base/gfx/native_widget_types.h" 12 #include "base/gfx/native_widget_types.h"
13 #include "base/gfx/size.h" 13 #include "base/gfx/size.h"
14 #include "base/scoped_ptr.h" 14 #include "base/scoped_ptr.h"
15 #include "base/timer.h" 15 #include "base/timer.h"
16 #include "chrome/common/ipc_channel.h"
17 #include "chrome/common/native_web_keyboard_event.h" 16 #include "chrome/common/native_web_keyboard_event.h"
18 #include "chrome/common/property_bag.h" 17 #include "chrome/common/property_bag.h"
18 #include "ipc/ipc_channel.h"
19 #include "testing/gtest/include/gtest/gtest_prod.h" 19 #include "testing/gtest/include/gtest/gtest_prod.h"
20 #include "webkit/api/public/WebTextDirection.h" 20 #include "webkit/api/public/WebTextDirection.h"
21 21
22 namespace gfx { 22 namespace gfx {
23 class Rect; 23 class Rect;
24 } 24 }
25 25
26 namespace WebKit { 26 namespace WebKit {
27 class WebInputEvent; 27 class WebInputEvent;
28 class WebMouseEvent; 28 class WebMouseEvent;
(...skipping 486 matching lines...) Expand 10 before | Expand all | Expand 10 after
515 515
516 // Set when we cancel updating the text direction. 516 // Set when we cancel updating the text direction.
517 // This flag also ignores succeeding update requests until we call 517 // This flag also ignores succeeding update requests until we call
518 // NotifyTextDirection(). 518 // NotifyTextDirection().
519 bool text_direction_canceled_; 519 bool text_direction_canceled_;
520 520
521 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHost); 521 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHost);
522 }; 522 };
523 523
524 #endif // CHROME_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_H_ 524 #endif // CHROME_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_H_
OLDNEW
« no previous file with comments | « chrome/browser/renderer_host/render_process_host.h ('k') | chrome/browser/renderer_host/resource_dispatcher_host.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698