Move file_dialog and message_box to browser/ui.
authorCheng Zhao <zcbenz@gmail.com>
Tue, 13 Aug 2013 08:51:47 +0000 (16:51 +0800)
committerCheng Zhao <zcbenz@gmail.com>
Tue, 13 Aug 2013 08:51:47 +0000 (16:51 +0800)
atom.gyp
browser/api/atom_api_dialog.cc
browser/ui/file_dialog.h [moved from browser/file_dialog.h with 89% similarity]
browser/ui/file_dialog_mac.mm [moved from browser/file_dialog_mac.mm with 98% similarity]
browser/ui/file_dialog_win.cc [moved from browser/file_dialog_win.cc with 99% similarity]
browser/ui/message_box.h [moved from browser/message_box.h with 86% similarity]
browser/ui/message_box_mac.mm [moved from browser/message_box_mac.mm with 97% similarity]
browser/ui/message_box_win.cc [moved from browser/message_box_win.cc with 99% similarity]

index f418c43..f05d2cd 100644 (file)
--- a/atom.gyp
+++ b/atom.gyp
       'browser/crash_reporter.h',
       'browser/crash_reporter_mac.mm',
       'browser/crash_reporter_win.cc',
-      'browser/file_dialog.h',
-      'browser/file_dialog_mac.mm',
-      'browser/file_dialog_win.cc',
-      'browser/message_box.h',
-      'browser/message_box_mac.mm',
-      'browser/message_box_win.cc',
       'browser/native_window.cc',
       'browser/native_window.h',
       'browser/native_window_mac.h',
       'browser/native_window_observer.h',
       'browser/nsalert_synchronous_sheet.h',
       'browser/nsalert_synchronous_sheet.mm',
+      'browser/ui/file_dialog.h',
+      'browser/ui/file_dialog_mac.mm',
+      'browser/ui/file_dialog_win.cc',
+      'browser/ui/message_box.h',
+      'browser/ui/message_box_mac.mm',
+      'browser/ui/message_box_win.cc',
       'browser/window_list.cc',
       'browser/window_list.h',
       'browser/window_list_observer.h',
index 3763387..69b0135 100644 (file)
@@ -9,9 +9,9 @@
 #include "base/utf_string_conversions.h"
 #include "base/values.h"
 #include "browser/api/atom_api_window.h"
-#include "browser/file_dialog.h"
-#include "browser/message_box.h"
 #include "browser/native_window.h"
+#include "browser/ui/file_dialog.h"
+#include "browser/ui/message_box.h"
 
 namespace atom {
 
similarity index 89%
rename from browser/file_dialog.h
rename to browser/ui/file_dialog.h
index 6f60de1..67b526f 100644 (file)
@@ -2,8 +2,8 @@
 // Use of this source code is governed by a BSD-style license that can be
 // found in the LICENSE file.
 
-#ifndef BROWSER_FILE_DIALOG_H_
-#define BROWSER_FILE_DIALOG_H_
+#ifndef BROWSER_UI_FILE_DIALOG_H_
+#define BROWSER_UI_FILE_DIALOG_H_
 
 #include <string>
 #include <vector>
@@ -35,4 +35,4 @@ bool ShowSaveDialog(atom::NativeWindow* window,
 
 }  // namespace file_dialog
 
-#endif  // BROWSER_FILE_DIALOG_H_
+#endif  // BROWSER_UI_FILE_DIALOG_H_
similarity index 98%
rename from browser/file_dialog_mac.mm
rename to browser/ui/file_dialog_mac.mm
index 6e6cbb9..d51be89 100644 (file)
@@ -2,7 +2,7 @@
 // Use of this source code is governed by a BSD-style license that can be
 // found in the LICENSE file.
 
-#include "browser/file_dialog.h"
+#include "browser/ui/file_dialog.h"
 
 #import <Cocoa/Cocoa.h>
 #include <CoreServices/CoreServices.h>
similarity index 99%
rename from browser/file_dialog_win.cc
rename to browser/ui/file_dialog_win.cc
index 4202f55..3a87767 100644 (file)
@@ -2,7 +2,7 @@
 // Use of this source code is governed by a BSD-style license that can be
 // found in the LICENSE file.
 
-#include "browser/file_dialog.h"
+#include "browser/ui/file_dialog.h"
 
 #include <windows.h>
 #include <commdlg.h>
similarity index 86%
rename from browser/message_box.h
rename to browser/ui/message_box.h
index 02094be..dfe7198 100644 (file)
@@ -2,8 +2,8 @@
 // Use of this source code is governed by a BSD-style license that can be
 // found in the LICENSE file.
 
-#ifndef BROWSER_MESSAGE_BOX_H_
-#define BROWSER_MESSAGE_BOX_H_
+#ifndef BROWSER_UI_MESSAGE_BOX_H_
+#define BROWSER_UI_MESSAGE_BOX_H_
 
 #include <string>
 #include <vector>
@@ -27,4 +27,4 @@ int ShowMessageBox(NativeWindow* parent_window,
 
 }  // namespace atom
 
-#endif  // BROWSER_MESSAGE_BOX_H_
+#endif  // BROWSER_UI_MESSAGE_BOX_H_
similarity index 97%
rename from browser/message_box_mac.mm
rename to browser/ui/message_box_mac.mm
index 2272f8a..f006ffb 100644 (file)
@@ -2,7 +2,7 @@
 // Use of this source code is governed by a BSD-style license that can be
 // found in the LICENSE file.
 
-#include "browser/message_box.h"
+#include "browser/ui/message_box.h"
 
 #import <Cocoa/Cocoa.h>
 
similarity index 99%
rename from browser/message_box_win.cc
rename to browser/ui/message_box_win.cc
index ccb6da5..49f8450 100644 (file)
@@ -2,7 +2,7 @@
 // Use of this source code is governed by a BSD-style license that can be
 // found in the LICENSE file.
 
-#include "browser/message_box.h"
+#include "browser/ui/message_box.h"
 
 #include "base/message_loop.h"
 #include "base/run_loop.h"