| OLD | NEW |
| 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 #ifndef CHROME_BROWSER_UI_VIEWS_EXTENSIONS_BROWSER_ACTION_DRAG_DATA_H_ | 5 #ifndef CHROME_BROWSER_UI_VIEWS_EXTENSIONS_BROWSER_ACTION_DRAG_DATA_H_ |
| 6 #define CHROME_BROWSER_UI_VIEWS_EXTENSIONS_BROWSER_ACTION_DRAG_DATA_H_ | 6 #define CHROME_BROWSER_UI_VIEWS_EXTENSIONS_BROWSER_ACTION_DRAG_DATA_H_ |
| 7 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include <string> | 9 #include <string> |
| 10 | 10 |
| 11 #include "base/basictypes.h" | 11 #include "base/basictypes.h" |
| 12 #include "chrome/browser/profile.h" | 12 #include "chrome/browser/profiles/profile.h" |
| 13 | 13 |
| 14 #if defined(TOOLKIT_VIEWS) | 14 #if defined(TOOLKIT_VIEWS) |
| 15 #include "app/os_exchange_data.h" | 15 #include "app/os_exchange_data.h" |
| 16 #endif | 16 #endif |
| 17 | 17 |
| 18 class BrowserActionButton; | 18 class BrowserActionButton; |
| 19 class FilePath; | 19 class FilePath; |
| 20 class Pickle; | 20 class Pickle; |
| 21 class Profile; | 21 class Profile; |
| 22 | 22 |
| (...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 55 // The index of the view being dragged. | 55 // The index of the view being dragged. |
| 56 size_t index_; | 56 size_t index_; |
| 57 | 57 |
| 58 // The MIME type for the clipboard format for BrowserActionDragData. | 58 // The MIME type for the clipboard format for BrowserActionDragData. |
| 59 static const char* kClipboardFormatString; | 59 static const char* kClipboardFormatString; |
| 60 | 60 |
| 61 DISALLOW_COPY_AND_ASSIGN(BrowserActionDragData); | 61 DISALLOW_COPY_AND_ASSIGN(BrowserActionDragData); |
| 62 }; | 62 }; |
| 63 | 63 |
| 64 #endif // CHROME_BROWSER_UI_VIEWS_EXTENSIONS_BROWSER_ACTION_DRAG_DATA_H_ | 64 #endif // CHROME_BROWSER_UI_VIEWS_EXTENSIONS_BROWSER_ACTION_DRAG_DATA_H_ |
| OLD | NEW |