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

Side by Side Diff: chrome/browser/external_tab_container_win.h

Issue 6989001: Misc. infobar stuff: (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 9 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 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_EXTERNAL_TAB_CONTAINER_WIN_H_ 5 #ifndef CHROME_BROWSER_EXTERNAL_TAB_CONTAINER_WIN_H_
6 #define CHROME_BROWSER_EXTERNAL_TAB_CONTAINER_WIN_H_ 6 #define CHROME_BROWSER_EXTERNAL_TAB_CONTAINER_WIN_H_
7 #pragma once 7 #pragma once
8 8
9 #include <map> 9 #include <map>
10 #include <string> 10 #include <string>
11 #include <vector> 11 #include <vector>
12 12
13 #include "base/lazy_instance.h" 13 #include "base/lazy_instance.h"
14 #include "base/memory/scoped_ptr.h" 14 #include "base/memory/scoped_ptr.h"
15 #include "chrome/browser/automation/automation_resource_message_filter.h" 15 #include "chrome/browser/automation/automation_resource_message_filter.h"
16 #include "chrome/browser/net/chrome_url_request_context.h" 16 #include "chrome/browser/net/chrome_url_request_context.h"
17 #include "chrome/browser/tab_contents/infobar_container.h"
17 #include "chrome/browser/ui/views/frame/browser_bubble_host.h" 18 #include "chrome/browser/ui/views/frame/browser_bubble_host.h"
18 #include "chrome/browser/ui/views/infobars/infobar_container.h"
19 #include "chrome/browser/ui/views/unhandled_keyboard_event_handler.h" 19 #include "chrome/browser/ui/views/unhandled_keyboard_event_handler.h"
20 #include "content/browser/tab_contents/tab_contents_delegate.h" 20 #include "content/browser/tab_contents/tab_contents_delegate.h"
21 #include "content/common/navigation_types.h" 21 #include "content/common/navigation_types.h"
22 #include "content/common/notification_observer.h" 22 #include "content/common/notification_observer.h"
23 #include "content/common/notification_registrar.h" 23 #include "content/common/notification_registrar.h"
24 #include "views/accelerator.h" 24 #include "views/accelerator.h"
25 #include "views/widget/widget_win.h" 25 #include "views/widget/widget_win.h"
26 26
27 class AutomationProvider; 27 class AutomationProvider;
28 class Browser; 28 class Browser;
(...skipping 369 matching lines...) Expand 10 before | Expand all | Expand 10 after
398 return false; 398 return false;
399 } 399 }
400 400
401 virtual void BeforeUnloadFired(TabContents* tab, bool proceed, 401 virtual void BeforeUnloadFired(TabContents* tab, bool proceed,
402 bool* proceed_to_fire_unload) { 402 bool* proceed_to_fire_unload) {
403 NOTREACHED(); 403 NOTREACHED();
404 } 404 }
405 }; 405 };
406 406
407 #endif // CHROME_BROWSER_EXTERNAL_TAB_CONTAINER_WIN_H_ 407 #endif // CHROME_BROWSER_EXTERNAL_TAB_CONTAINER_WIN_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698