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

Side by Side Diff: chrome/browser/chromeos/wm_overview_controller.cc

Issue 5582002: Move:... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 10 years 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) 2010 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2010 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 #include "chrome/browser/chromeos/wm_overview_controller.h" 5 #include "chrome/browser/chromeos/wm_overview_controller.h"
6 6
7 #include <algorithm> 7 #include <algorithm>
8 #include <vector> 8 #include <vector>
9 9
10 #include "base/linked_ptr.h" 10 #include "base/linked_ptr.h"
11 #include "chrome/browser/browser_process.h" 11 #include "chrome/browser/browser_process.h"
12 #include "chrome/browser/chromeos/wm_ipc.h" 12 #include "chrome/browser/chromeos/wm_ipc.h"
13 #include "chrome/browser/chromeos/wm_overview_fav_icon.h" 13 #include "chrome/browser/chromeos/wm_overview_fav_icon.h"
14 #include "chrome/browser/chromeos/wm_overview_snapshot.h" 14 #include "chrome/browser/chromeos/wm_overview_snapshot.h"
15 #include "chrome/browser/chromeos/wm_overview_title.h" 15 #include "chrome/browser/chromeos/wm_overview_title.h"
16 #include "chrome/browser/renderer_host/render_view_host.h" 16 #include "chrome/browser/renderer_host/render_view_host.h"
17 #include "chrome/browser/renderer_host/render_widget_host.h" 17 #include "chrome/browser/renderer_host/render_widget_host.h"
18 #include "chrome/browser/renderer_host/render_widget_host_view.h" 18 #include "chrome/browser/renderer_host/render_widget_host_view.h"
19 #include "chrome/browser/tab_contents/tab_contents.h" 19 #include "chrome/browser/tab_contents/tab_contents.h"
20 #include "chrome/browser/tab_contents/tab_contents_view.h" 20 #include "chrome/browser/tab_contents/tab_contents_view.h"
21 #include "chrome/browser/tab_contents/thumbnail_generator.h" 21 #include "chrome/browser/tab_contents/thumbnail_generator.h"
22 #include "chrome/browser/tab_contents_wrapper.h"
23 #include "chrome/browser/tabs/tab_strip_model.h" 22 #include "chrome/browser/tabs/tab_strip_model.h"
24 #include "chrome/browser/ui/browser.h" 23 #include "chrome/browser/ui/browser.h"
24 #include "chrome/browser/ui/tab_contents/tab_contents_wrapper.h"
25 #include "chrome/browser/views/frame/browser_view.h" 25 #include "chrome/browser/views/frame/browser_view.h"
26 #include "chrome/common/notification_service.h" 26 #include "chrome/common/notification_service.h"
27 #include "views/widget/root_view.h" 27 #include "views/widget/root_view.h"
28 #include "views/widget/widget_gtk.h" 28 #include "views/widget/widget_gtk.h"
29 #include "views/window/window.h" 29 #include "views/window/window.h"
30 30
31 using std::vector; 31 using std::vector;
32 32
33 #if !defined(OS_CHROMEOS) 33 #if !defined(OS_CHROMEOS)
34 #error This file is only meant to be compiled for ChromeOS 34 #error This file is only meant to be compiled for ChromeOS
(...skipping 700 matching lines...) Expand 10 before | Expand all | Expand 10 after
735 if (item.get() == NULL) { 735 if (item.get() == NULL) {
736 item = BrowserListenerVector::value_type( 736 item = BrowserListenerVector::value_type(
737 new BrowserListener(*iterator, this)); 737 new BrowserListener(*iterator, this));
738 } 738 }
739 listeners_.push_back(item); 739 listeners_.push_back(item);
740 ++iterator; 740 ++iterator;
741 } 741 }
742 } 742 }
743 743
744 } // namespace chromeos 744 } // namespace chromeos
OLDNEW
« no previous file with comments | « chrome/browser/chromeos/view_ids.h ('k') | chrome/browser/debugger/devtools_http_protocol_handler.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698