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

Side by Side Diff: chrome/browser/chromeos/frame/panel_controller.cc

Issue 5854003: Remove CrOS hack from ppapi.gyp that made the include directories work. This... (Closed) Base URL: svn://chrome-svn/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/frame/panel_controller.h" 5 #include "chrome/browser/chromeos/frame/panel_controller.h"
6 6
7 #include <vector> 7 #include <vector>
8 8
9 #include "app/resource_bundle.h" 9 #include "app/resource_bundle.h"
10 #include "base/logging.h" 10 #include "base/logging.h"
11 #include "base/scoped_ptr.h" 11 #include "base/scoped_ptr.h"
12 #include "base/singleton.h" 12 #include "base/singleton.h"
13 #include "base/string_util.h" 13 #include "base/string_util.h"
14 #include "base/utf_string_conversions.h" 14 #include "base/utf_string_conversions.h"
15 #include "chrome/browser/chromeos/wm_ipc.h" 15 #include "chrome/browser/chromeos/wm_ipc.h"
16 #include "chrome/browser/ui/browser.h" 16 #include "chrome/browser/ui/browser.h"
17 #include "chrome/common/notification_service.h" 17 #include "chrome/common/notification_service.h"
18 #include "cros/chromeos_wm_ipc_enums.h"
19 #include "gfx/canvas_skia.h" 18 #include "gfx/canvas_skia.h"
20 #include "grit/app_resources.h" 19 #include "grit/app_resources.h"
21 #include "grit/generated_resources.h" 20 #include "grit/generated_resources.h"
22 #include "grit/theme_resources.h" 21 #include "grit/theme_resources.h"
22 #include "third_party/cros/chromeos_wm_ipc_enums.h"
23 #include "third_party/skia/include/effects/SkBlurMaskFilter.h" 23 #include "third_party/skia/include/effects/SkBlurMaskFilter.h"
24 #include "third_party/skia/include/effects/SkGradientShader.h" 24 #include "third_party/skia/include/effects/SkGradientShader.h"
25 #include "views/controls/button/image_button.h" 25 #include "views/controls/button/image_button.h"
26 #include "views/controls/image_view.h" 26 #include "views/controls/image_view.h"
27 #include "views/controls/label.h" 27 #include "views/controls/label.h"
28 #include "views/event.h" 28 #include "views/event.h"
29 #include "views/painter.h" 29 #include "views/painter.h"
30 #include "views/view.h" 30 #include "views/view.h"
31 #include "views/widget/widget_gtk.h" 31 #include "views/widget/widget_gtk.h"
32 #include "views/window/window.h" 32 #include "views/window/window.h"
(...skipping 365 matching lines...) Expand 10 before | Expand all | Expand 10 after
398 views::Button* sender, const views::Event& event) { 398 views::Button* sender, const views::Event& event) {
399 if (panel_controller_ && sender == close_button_) 399 if (panel_controller_ && sender == close_button_)
400 panel_controller_->OnCloseButtonPressed(); 400 panel_controller_->OnCloseButtonPressed();
401 } 401 }
402 402
403 PanelController::TitleContentView::~TitleContentView() { 403 PanelController::TitleContentView::~TitleContentView() {
404 VLOG(1) << "panel: delete " << this; 404 VLOG(1) << "panel: delete " << this;
405 } 405 }
406 406
407 } // namespace chromeos 407 } // namespace chromeos
OLDNEW
« no previous file with comments | « chrome/browser/chromeos/frame/panel_controller.h ('k') | chrome/browser/chromeos/google_update_chromeos.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698