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

Side by Side Diff: chrome/browser/views/infobars/extension_infobar.cc

Issue 1705009: Changing linux platform for chromeos. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 10 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) 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/views/infobars/extension_infobar.h" 5 #include "chrome/browser/views/infobars/extension_infobar.h"
6 6
7 #include "app/resource_bundle.h" 7 #include "app/resource_bundle.h"
8 #include "app/slide_animation.h" 8 #include "app/slide_animation.h"
9 #include "chrome/browser/extensions/extension_context_menu_model.h" 9 #include "chrome/browser/extensions/extension_context_menu_model.h"
10 #include "chrome/browser/extensions/extension_infobar_delegate.h" 10 #include "chrome/browser/extensions/extension_infobar_delegate.h"
11 #include "chrome/browser/extensions/extension_host.h" 11 #include "chrome/browser/extensions/extension_host.h"
12 #include "chrome/browser/platform_util.h"
12 #include "chrome/browser/views/frame/browser_view.h" 13 #include "chrome/browser/views/frame/browser_view.h"
13 #include "chrome/common/extensions/extension.h" 14 #include "chrome/common/extensions/extension.h"
14 #include "chrome/common/platform_util.h"
15 #include "gfx/canvas.h" 15 #include "gfx/canvas.h"
16 #include "grit/theme_resources.h" 16 #include "grit/theme_resources.h"
17 #include "views/controls/button/menu_button.h" 17 #include "views/controls/button/menu_button.h"
18 #include "views/controls/menu/menu_2.h" 18 #include "views/controls/menu/menu_2.h"
19 #include "views/widget/widget.h" 19 #include "views/widget/widget.h"
20 20
21 // The horizontal margin between the menu and the Extension (HTML) view. 21 // The horizontal margin between the menu and the Extension (HTML) view.
22 static const int kMenuHorizontalMargin = 1; 22 static const int kMenuHorizontalMargin = 1;
23 23
24 // The amount of space to the right of the Extension (HTML) view (to avoid 24 // The amount of space to the right of the Extension (HTML) view (to avoid
(...skipping 138 matching lines...) Expand 10 before | Expand all | Expand 10 after
163 tracker_.LoadImage(extension, icon_resource, gfx::Size(size, size), 163 tracker_.LoadImage(extension, icon_resource, gfx::Size(size, size),
164 ImageLoadingTracker::DONT_CACHE); 164 ImageLoadingTracker::DONT_CACHE);
165 } else { 165 } else {
166 OnImageLoaded(NULL, icon_resource, 0); // |image|, |index|. 166 OnImageLoaded(NULL, icon_resource, 0); // |image|, |index|.
167 } 167 }
168 } 168 }
169 169
170 InfoBar* ExtensionInfoBarDelegate::CreateInfoBar() { 170 InfoBar* ExtensionInfoBarDelegate::CreateInfoBar() {
171 return new ExtensionInfoBar(this); 171 return new ExtensionInfoBar(this);
172 } 172 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698