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

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

Issue 7327007: Moving notification types which are chrome specific to a new header file chrome_notification_type... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 9 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 | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 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_VIEW_WIN_H_ 5 #ifndef CHROME_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_WIN_H_
6 #define CHROME_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_WIN_H_ 6 #define CHROME_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_WIN_H_
7 #pragma once 7 #pragma once
8 8
9 #include <atlbase.h> 9 #include <atlbase.h>
10 #include <atlapp.h> 10 #include <atlapp.h>
(...skipping 156 matching lines...) Expand 10 before | Expand all | Expand 10 after
167 virtual bool ContainsNativeView(gfx::NativeView native_view) const OVERRIDE; 167 virtual bool ContainsNativeView(gfx::NativeView native_view) const OVERRIDE;
168 virtual void SetVisuallyDeemphasized(const SkColor* color, 168 virtual void SetVisuallyDeemphasized(const SkColor* color,
169 bool animate) OVERRIDE; 169 bool animate) OVERRIDE;
170 virtual gfx::PluginWindowHandle GetCompositingSurface() OVERRIDE; 170 virtual gfx::PluginWindowHandle GetCompositingSurface() OVERRIDE;
171 virtual void ShowCompositorHostWindow(bool show) OVERRIDE; 171 virtual void ShowCompositorHostWindow(bool show) OVERRIDE;
172 virtual void OnAccessibilityNotifications( 172 virtual void OnAccessibilityNotifications(
173 const std::vector<ViewHostMsg_AccessibilityNotification_Params>& params 173 const std::vector<ViewHostMsg_AccessibilityNotification_Params>& params
174 ) OVERRIDE; 174 ) OVERRIDE;
175 175
176 // Implementation of NotificationObserver: 176 // Implementation of NotificationObserver:
177 virtual void Observe(NotificationType type, 177 virtual void Observe(int type,
178 const NotificationSource& source, 178 const NotificationSource& source,
179 const NotificationDetails& details) OVERRIDE; 179 const NotificationDetails& details) OVERRIDE;
180 180
181 // Implementation of BrowserAccessibilityDelegate: 181 // Implementation of BrowserAccessibilityDelegate:
182 virtual void SetAccessibilityFocus(int acc_obj_id) OVERRIDE; 182 virtual void SetAccessibilityFocus(int acc_obj_id) OVERRIDE;
183 virtual void AccessibilityDoDefaultAction(int acc_obj_id) OVERRIDE; 183 virtual void AccessibilityDoDefaultAction(int acc_obj_id) OVERRIDE;
184 184
185 protected: 185 protected:
186 // Windows Message Handlers 186 // Windows Message Handlers
187 LRESULT OnCreate(CREATESTRUCT* create_struct); 187 LRESULT OnCreate(CREATESTRUCT* create_struct);
(...skipping 176 matching lines...) Expand 10 before | Expand all | Expand 10 after
364 // Stores the current text input type received by ImeUpdateTextInputState() 364 // Stores the current text input type received by ImeUpdateTextInputState()
365 // method. 365 // method.
366 ui::TextInputType text_input_type_; 366 ui::TextInputType text_input_type_;
367 367
368 ScopedVector<ui::ViewProp> props_; 368 ScopedVector<ui::ViewProp> props_;
369 369
370 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewWin); 370 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewWin);
371 }; 371 };
372 372
373 #endif // CHROME_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_WIN_H_ 373 #endif // CHROME_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_WIN_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698