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

Side by Side Diff: chrome/browser/ui/views/extensions/native_app_window_views.cc

Issue 12088089: Move DraggableRegion to top directory src/extensions/common (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@themes
Patch Set: Created 7 years, 10 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
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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/ui/views/extensions/native_app_window_views.h" 5 #include "chrome/browser/ui/views/extensions/native_app_window_views.h"
6 6
7 #include "chrome/browser/extensions/extension_host.h" 7 #include "chrome/browser/extensions/extension_host.h"
8 #include "chrome/browser/favicon/favicon_tab_helper.h" 8 #include "chrome/browser/favicon/favicon_tab_helper.h"
9 #include "chrome/browser/ui/views/extensions/extension_keybinding_registry_views .h" 9 #include "chrome/browser/ui/views/extensions/extension_keybinding_registry_views .h"
10 #include "chrome/browser/ui/views/extensions/shell_window_frame_view.h" 10 #include "chrome/browser/ui/views/extensions/shell_window_frame_view.h"
11 #include "chrome/common/extensions/draggable_region.h"
12 #include "chrome/common/extensions/extension.h" 11 #include "chrome/common/extensions/extension.h"
13 #include "content/public/browser/render_view_host.h" 12 #include "content/public/browser/render_view_host.h"
14 #include "content/public/browser/render_widget_host_view.h" 13 #include "content/public/browser/render_widget_host_view.h"
15 #include "content/public/browser/web_contents.h" 14 #include "content/public/browser/web_contents.h"
16 #include "content/public/browser/web_contents_view.h" 15 #include "content/public/browser/web_contents_view.h"
16 #include "extensions/common/draggable_region.h"
17 #include "ui/views/controls/webview/webview.h" 17 #include "ui/views/controls/webview/webview.h"
18 #include "ui/views/widget/widget.h" 18 #include "ui/views/widget/widget.h"
19 #include "ui/views/window/non_client_view.h" 19 #include "ui/views/window/non_client_view.h"
20 20
21 #if defined(OS_WIN) && !defined(USE_AURA) 21 #if defined(OS_WIN) && !defined(USE_AURA)
22 #include "base/utf_string_conversions.h" 22 #include "base/utf_string_conversions.h"
23 #include "chrome/browser/shell_integration.h" 23 #include "chrome/browser/shell_integration.h"
24 #include "chrome/browser/web_applications/web_app.h" 24 #include "chrome/browser/web_applications/web_app.h"
25 #include "ui/base/win/shell.h" 25 #include "ui/base/win/shell.h"
26 #endif 26 #endif
(...skipping 491 matching lines...) Expand 10 before | Expand all | Expand 10 after
518 } 518 }
519 519
520 //------------------------------------------------------------------------------ 520 //------------------------------------------------------------------------------
521 // NativeAppWindow::Create 521 // NativeAppWindow::Create
522 522
523 // static 523 // static
524 NativeAppWindow* NativeAppWindow::Create( 524 NativeAppWindow* NativeAppWindow::Create(
525 ShellWindow* shell_window, const ShellWindow::CreateParams& params) { 525 ShellWindow* shell_window, const ShellWindow::CreateParams& params) {
526 return new NativeAppWindowViews(shell_window, params); 526 return new NativeAppWindowViews(shell_window, params);
527 } 527 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698